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

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: BlueTooth -> Bluetooth. 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-div,
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 color: gray;
39 }
40
41 #bluetooth-scanning-icon {
42 -webkit-margin-start: 10px;
43 background-image: url("loader.gif");
44 height: 24px;
45 margin-top: 3px;
46 width: 24px;
47 }
48
49 .bluetooth-headset,
50 .bluetooth-keyboard,
51 .bluetooth-mouse {
52 background-repeat: no-repeat;
53 }
54
55 .bluetooth-headset {
56 background-image: url("headset.png");
57 }
58
59 .bluetooth-keyboard {
60 background-image: url("keyboard.png");
61 }
62
63 .bluetooth-mouse {
64 background-image: url("mouse.png");
65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698