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

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

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 years 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
(Empty)
1 .touchpad-sensitivity-more {
2 float: right;
3 }
4
5 html[dir=rtl] .touchpad-sensitivity-more {
6 float: left;
7 }
8
9 .option-name {
10 display: inline;
11 }
12
13 #timezone-value {
14 display: inline-block;
15 vertical-align: baseline;
16 }
17
18 #touchpad-value,
19 #slider-control {
20 display: inline-block;
21 vertical-align: top;
22 }
23
24 #bluetooth-options-div {
25 -webkit-box-orient: vertical;
26 display: -webkit-box;
27 }
28
29 #no-bluetooth-devices-label {
30 -webkit-margin-after: 5px;
31 -webkit-margin-before: 5px;
32 color: gray;
33 }
34
35 #bluetooth-finder-container,
36 #bluetooth-scanning-status {
37 -webkit-box-orient: horizontal;
38 display: -webkit-box;
39 vertical-align: baseline;
40 }
41
42 #bluetooth-scanning-label,
43 #bluetooth-scanning-icon {
44 -webkit-transition: 250ms opacity;
45 }
46
47 #bluetooth-scanning-label {
48 -webkit-margin-start: 5px;
49 color: gray;
50 }
51
52 #bluetooth-scanning-icon {
53 -webkit-margin-start: 10px;
54 vertical-align: middle;
55 }
56
57 #bluetooth-device-list {
58 display: table;
59 width: 100%;
60 }
61
62 #bluetooth-device-list > * {
63 display: table-row;
64 }
65
66 #bluetooth-device-list > * > * {
67 border-bottom: 4px solid rgba(255,255,255,1);
68 display: table-cell;
69 }
70
71 .bluetooth-item > * > button {
72 visibility: hidden;
73 width: 100%;
74 }
75
76 .bluetooth-item:first-child > * {
77 border-top: 4px solid rgba(255,255,255,1);
78 }
79
80 .bluetooth-item:hover > * > button,
81 .bluetooth-item[connected] > * > button,
82 .bluetooth-item[connecting] > * > button {
83 visibility: visible;
84 }
85
86 .bluetooth-item[connected] {
87 background-color: hsl(214, 91%, 89%);
88 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8),
89 rgba(255, 255, 255, 0));
90 border-color: hsl(214, 91%, 65%);
91 }
92
93 .bluetooth-item[paired] {
94 color: gray;
95 }
96
97 .bluetooth-item:hover,
98 .bluetooth-item[connecting] {
99 background-color: hsl(214, 91%, 97%);
100 border-color: hsl(214, 91%, 65%);
101 }
102
103 .bluetooth-item-text {
104 -webkit-padding-after: 3px;
105 -webkit-padding-before: 3px;
106 -webkit-padding-end: 5px;
107 -webkit-padding-start: 5px;
108 width: 100%;
109 }
110
111 .bluetooth-item-text > * > .inline-spinner {
112 -webkit-margin-start: 5px;
113 -webkit-transform: translateY(3px);
114 }
115
116 .bluetooth-instructions {
117 -webkit-margin-after: 5px;
118 -webkit-margin-before: 5px;
119 display: block;
120 line-height: 120%;
121 }
122
123 .bluetooth-remote-passkey {
124 -webkit-box-align: baseline;
125 -webkit-box-orient: horizontal;
126 display: -webkit-inline-box;
127 margin-bottom: 5px;
128 margin-top: 5px;
129 }
130
131 .bluetooth-confirm-passkey {
132 display: inline;
133 font-weight: bold;
134 }
135
136 .bluetooth-passkey-char {
137 -webkit-margin-end: 3px;
138 -webkit-margin-start: 3px;
139 border: 1px solid black;
140 display: -webkit-box;
141 font-weight: bold;
142 padding: 2px;
143 }
144
145 .bluetooth-passkey-char:first-child {
146 -webkit-margin-start: 10px;
147 }
148
149 .bluetooth-passkey-char:last-child {
150 -webkit-margin-end: 10px;
151 }
152
153 .bluetooth-passkey-char.key-typed {
154 background-color: hsl(214, 91%, 50%);
155 color: white;
156 }
157
158 .bluetooth-passkey-field {
159 -webkit-margin-start: 10px;
160 width: 100px;
161 }
162
163 .bluetooth-button-group {
164 -webkit-padding-end: 5px;
165 vertical-align: middle;
166 }
167
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698