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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 9564007: Fixing regression in File Browser rename input field (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698