| 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 { | 5 html { |
| 6 /* It's necessary to put this here instead of in body in order to get the | 6 /* It's necessary to put this here instead of in body in order to get the |
| 7 background-size of 100% to work properly */ | 7 background-size of 100% to work properly */ |
| 8 height: 100%; | 8 height: 100%; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 } | 10 } |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 left: 18px; | 255 left: 18px; |
| 256 top: 18px; | 256 top: 18px; |
| 257 } | 257 } |
| 258 | 258 |
| 259 html[dir='rtl'] #trash > .lid, | 259 html[dir='rtl'] #trash > .lid, |
| 260 html[dir='rtl'] #trash > .can { | 260 html[dir='rtl'] #trash > .can { |
| 261 right: 18px; | 261 right: 18px; |
| 262 } | 262 } |
| 263 | 263 |
| 264 #footer.showing-trash-mode #trash.drag-target .lid { | 264 #footer.showing-trash-mode #trash.drag-target .lid { |
| 265 -webkit-transform: rotate(-45deg); | 265 transform: rotate(-45deg); |
| 266 } | 266 } |
| 267 | 267 |
| 268 html[dir='rtl'] #footer.showing-trash-mode #trash.drag-target .lid { | 268 html[dir='rtl'] #footer.showing-trash-mode #trash.drag-target .lid { |
| 269 -webkit-transform: rotate(45deg); | 269 transform: rotate(45deg); |
| 270 } | 270 } |
| 271 | 271 |
| 272 #fontMeasuringDiv { | 272 #fontMeasuringDiv { |
| 273 /* The font attributes match the nav inputs. */ | 273 /* The font attributes match the nav inputs. */ |
| 274 font-size: 0.9em; | 274 font-size: 0.9em; |
| 275 font-weight: bold; | 275 font-weight: bold; |
| 276 pointer-events: none; | 276 pointer-events: none; |
| 277 position: absolute; | 277 position: absolute; |
| 278 visibility: hidden; | 278 visibility: hidden; |
| 279 } | 279 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 padding: 0; | 353 padding: 0; |
| 354 } | 354 } |
| 355 | 355 |
| 356 .other-sessions-promo-message:only-child { | 356 .other-sessions-promo-message:only-child { |
| 357 display: block; | 357 display: block; |
| 358 } | 358 } |
| 359 | 359 |
| 360 .other-sessions-promo-message p { | 360 .other-sessions-promo-message p { |
| 361 margin: 0; | 361 margin: 0; |
| 362 } | 362 } |
| OLD | NEW |