OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 html[dir='rtl'] body.uber-frame > .page { | 5 html[dir='rtl'] body.uber-frame > .page { |
6 -webkit-margin-end: 0; | 6 -webkit-margin-end: 0; |
7 } | 7 } |
8 | 8 |
9 #top-container { | 9 #top-container { |
10 margin-top: 16px; | 10 margin-top: 16px; |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 min-width: 110px; | 252 min-width: 110px; |
253 width: 110px; | 253 width: 110px; |
254 } | 254 } |
255 | 255 |
256 .entry input[type='checkbox'] { | 256 .entry input[type='checkbox'] { |
257 -webkit-margin-end: 6px; | 257 -webkit-margin-end: 6px; |
258 -webkit-margin-start: 4px; | 258 -webkit-margin-start: 4px; |
259 line-height: 1em; | 259 line-height: 1em; |
260 } | 260 } |
261 | 261 |
262 <if expr="not pp_ifdef('android')"> | 262 <if expr="not is_android"> |
263 /* Checkboxes are shown when checked or focused, or when the entry is hovered. | 263 /* Checkboxes are shown when checked or focused, or when the entry is hovered. |
264 * Fade in on focus, but not on hover, because it makes the UI feel laggy. */ | 264 * Fade in on focus, but not on hover, because it makes the UI feel laggy. */ |
265 .site-domain-wrapper input[type=checkbox]:not(:checked), | 265 .site-domain-wrapper input[type=checkbox]:not(:checked), |
266 .entry input[type='checkbox']:not(:checked) { | 266 .entry input[type='checkbox']:not(:checked) { |
267 opacity: 0; | 267 opacity: 0; |
268 } | 268 } |
269 | 269 |
270 .site-domain-wrapper:hover input[type='checkbox'], | 270 .site-domain-wrapper:hover input[type='checkbox'], |
271 .site-domain-wrapper input[type='checkbox']:focus, | 271 .site-domain-wrapper input[type='checkbox']:focus, |
272 .entry-box:hover input[type='checkbox'], | 272 .entry-box:hover input[type='checkbox'], |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 background-image: url(../../../../ui/webui/resources/images/phone_small.png); | 534 background-image: url(../../../../ui/webui/resources/images/phone_small.png); |
535 background-position: 14px center; | 535 background-position: 14px center; |
536 padding-left: 43px; | 536 padding-left: 43px; |
537 } | 537 } |
538 | 538 |
539 #action-menu[data-devicetype='tablet']::before { | 539 #action-menu[data-devicetype='tablet']::before { |
540 background-image: url(../../../../ui/webui/resources/images/tablet_small.png); | 540 background-image: url(../../../../ui/webui/resources/images/tablet_small.png); |
541 background-position: 17px center; | 541 background-position: 17px center; |
542 padding-left: 49px; | 542 padding-left: 49px; |
543 } | 543 } |
OLD | NEW |