OLD | NEW |
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 } |
OLD | NEW |