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 /* Special attribute to hide elements. */ | 5 /* Special attribute to hide elements. */ |
6 [hidden] { | 6 [hidden] { |
7 display: none !important; | 7 display: none !important; |
8 } | 8 } |
9 | 9 |
10 /* This file contains "borrowed" copy of standard styles. To simplify merging, | 10 /* This file contains "borrowed" copy of standard styles. To simplify merging, |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 url('../../common/images/icon32.png') 1x, | 366 url('../../common/images/icon32.png') 1x, |
367 url('../../common/images/icon64.png') 2x); | 367 url('../../common/images/icon64.png') 2x); |
368 } | 368 } |
369 | 369 |
370 div.watch-single-video-icon { | 370 div.watch-single-video-icon { |
371 background-image: -webkit-image-set( | 371 background-image: -webkit-image-set( |
372 url('../images/media/watch.png') 1x, | 372 url('../images/media/watch.png') 1x, |
373 url('../images/media/2x/watch.png') 2x); | 373 url('../images/media/2x/watch.png') 2x); |
374 } | 374 } |
375 | 375 |
| 376 /* Entry names (File names, Folder names, Volume names, ...). */ |
| 377 /* Their base bidi direction should be ltr even in RTL languages. */ |
| 378 html[dir='rtl'] .entry-name { |
| 379 direction: ltr; |
| 380 text-align: right; |
| 381 unicode-bidi: embed; |
| 382 } |
| 383 |
376 /* Pop-up dialogs. */ | 384 /* Pop-up dialogs. */ |
377 | 385 |
378 .cr-dialog-container { | 386 .cr-dialog-container { |
379 -webkit-box-align: center; | 387 -webkit-box-align: center; |
380 -webkit-box-pack: center; | 388 -webkit-box-pack: center; |
381 -webkit-user-select: none; | 389 -webkit-user-select: none; |
382 display: -webkit-box; | 390 display: -webkit-box; |
383 height: 100%; | 391 height: 100%; |
384 left: 0; | 392 left: 0; |
385 overflow: hidden; | 393 overflow: hidden; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 width: 44px; | 517 width: 44px; |
510 } | 518 } |
511 | 519 |
512 .cr-dialog-close:hover { | 520 .cr-dialog-close:hover { |
513 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); | 521 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); |
514 } | 522 } |
515 | 523 |
516 .cr-dialog-close:active { | 524 .cr-dialog-close:active { |
517 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); | 525 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); |
518 } | 526 } |
OLD | NEW |