Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Side by Side Diff: chrome/browser/resources/options/chromeos/system_options_page.css

Issue 8137003: Add display of available bluetooth devices, and mechanism for retrieving the list. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add opacity transition animation for the Bluetooth scanning indicator. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 .touchpad-sensitivity-more { 1 .touchpad-sensitivity-more {
2 float: right; 2 float: right;
3 } 3 }
4 4
5 html[dir=rtl] .touchpad-sensitivity-more { 5 html[dir=rtl] .touchpad-sensitivity-more {
6 float: left; 6 float: left;
7 } 7 }
8 8
9 .option-name { 9 .option-name {
10 display: inline; 10 display: inline;
11 } 11 }
12 12
13 #timezone-value { 13 #timezone-value {
14 display: inline-block; 14 display: inline-block;
15 vertical-align: baseline; 15 vertical-align: baseline;
16 } 16 }
17 17
18 #touchpad-value, 18 #touchpad-value,
19 #slider-control { 19 #slider-control {
20 display: inline-block; 20 display: inline-block;
21 vertical-align: top; 21 vertical-align: top;
22 } 22 }
23 23
24 #bluetooth-options-div{ 24 #bluetooth-options-div {
25 -webkit-box-orient: vertical; 25 -webkit-box-orient: vertical;
26 display: -webkit-box; 26 display: -webkit-box;
27 } 27 }
28
29 #bluetooth-finder-container,
30 #bluetooth-scanning-status {
31 -webkit-box-orient: horizontal;
32 display: -webkit-box;
33 vertical-align: baseline;
34 }
35
36 #bluetooth-scanning-label {
37 -webkit-margin-start: 5px;
38 -webkit-transition: 0.25s opacity;
39 color: gray;
40 }
41
42 #bluetooth-scanning-icon {
43 -webkit-margin-start: 10px;
44 -webkit-transition: 0.25s opacity;
45 background-image: url("loader.gif");
46 height: 24px;
47 margin-top: 3px;
48 width: 24px;
49 }
50
51 .bluetooth-headset,
52 .bluetooth-keyboard,
53 .bluetooth-mouse {
54 background-repeat: no-repeat;
55 }
56
57 .bluetooth-headset {
58 background-image: url("headset.png");
59 }
60
61 .bluetooth-keyboard {
62 background-image: url("keyboard.png");
63 }
64
65 .bluetooth-mouse {
66 background-image: url("mouse.png");
67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698