OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
8 body { | 8 body { |
9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 this rule. */ | 581 this rule. */ |
582 .table-row-cell > div { | 582 .table-row-cell > div { |
583 overflow: hidden; | 583 overflow: hidden; |
584 text-overflow: ellipsis; | 584 text-overflow: ellipsis; |
585 white-space: nowrap; | 585 white-space: nowrap; |
586 display: block; | 586 display: block; |
587 } | 587 } |
588 | 588 |
589 /* Text box used for renaming in the detail list. */ | 589 /* Text box used for renaming in the detail list. */ |
590 .table-row-cell input.rename { | 590 .table-row-cell input.rename { |
| 591 line-height: 20px; |
591 -webkit-margin-start: -3px; | 592 -webkit-margin-start: -3px; |
592 } | 593 } |
593 | 594 |
594 /* Elements that need to be LTR even in an RTL context, but should align | 595 /* Elements that need to be LTR even in an RTL context, but should align |
595 * left. Display size in Hebrew is such a case. | 596 * left. Display size in Hebrew is such a case. |
596 */ | 597 */ |
597 html[dir='rtl'] .align-end-weakrtl { | 598 html[dir='rtl'] .align-end-weakrtl { |
598 direction: ltr; | 599 direction: ltr; |
599 text-align: left; | 600 text-align: left; |
600 } | 601 } |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 left: 0; | 977 left: 0; |
977 width: 100%; | 978 width: 100%; |
978 height: 100%; | 979 height: 100%; |
979 border: none; | 980 border: none; |
980 z-index: 100; | 981 z-index: 100; |
981 } | 982 } |
982 | 983 |
983 menu.file-context-menu { | 984 menu.file-context-menu { |
984 z-index: 4; | 985 z-index: 4; |
985 } | 986 } |
OLD | NEW |