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

Side by Side Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 291583004: Fix minor presentation issues in RTL languages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use scaleX rather than rotate to flip arrow. Created 6 years, 7 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 /* 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 /* The order of z-index: 5 /* The order of z-index:
6 * - 2: drag-selection-border 6 * - 2: drag-selection-border
7 * - 3: preview-panel 7 * - 3: preview-panel
8 * - 500: scrollbar 8 * - 500: scrollbar
9 * - 500: splitter 9 * - 500: splitter
10 * - 525: spinner 10 * - 525: spinner
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 158
159 .dialog-navigation-list-header #profile-badge { 159 .dialog-navigation-list-header #profile-badge {
160 display: inline-block; 160 display: inline-block;
161 height: 29px; /* Size of a profile image. */ 161 height: 29px; /* Size of a profile image. */
162 margin: 8px; 162 margin: 8px;
163 vertical-align: top; 163 vertical-align: top;
164 width: 29px; /* Size of a profile image. */ 164 width: 29px; /* Size of a profile image. */
165 } 165 }
166 166
167 .dialog-navigation-list-header #app-name { 167 .dialog-navigation-list-header #app-name {
168 -webkit-margin-start: 15px;
169 color: #303030; 168 color: #303030;
170 font-size: 130%; 169 font-size: 130%;
170 margin: 0 15px;
171 } 171 }
172 172
173 .dialog-navigation-list-header #profile-badge:not([hidden]) + #app-name { 173 .dialog-navigation-list-header #profile-badge:not([hidden]) + #app-name {
174 -webkit-margin-start: 0; 174 margin: 0;
175 } 175 }
176 176
177 .dialog-navigation-list-contents { 177 .dialog-navigation-list-contents {
178 display: -webkit-box; 178 display: -webkit-box;
179 flex: 1 1 auto; 179 flex: 1 1 auto;
180 position: relative; 180 position: relative;
181 } 181 }
182 182
183 .dialog-navigation-list-footer { 183 .dialog-navigation-list-footer {
184 display: -webkit-flex; 184 display: -webkit-flex;
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 background-image: -webkit-image-set( 615 background-image: -webkit-image-set(
616 url('../images/files/ui/breadcrumb-separator.png') 1x, 616 url('../images/files/ui/breadcrumb-separator.png') 1x,
617 url('../images/files/ui/2x/breadcrumb-separator.png') 2x); 617 url('../images/files/ui/2x/breadcrumb-separator.png') 2x);
618 background-position: center center; 618 background-position: center center;
619 background-repeat: no-repeat; 619 background-repeat: no-repeat;
620 height: 10px; 620 height: 10px;
621 overflow: hidden; 621 overflow: hidden;
622 width: 25px; 622 width: 25px;
623 } 623 }
624 624
625 html[dir='rtl'] .breadcrumbs .separator {
626 -webkit-transform: scaleX(-1);
627 }
628
625 #filename-input-box input { 629 #filename-input-box input {
626 border: 1px solid #c8c8c8; 630 border: 1px solid #c8c8c8;
627 border-radius: 1px; 631 border-radius: 1px;
628 box-sizing: border-box; 632 box-sizing: border-box;
629 height: 31px; /* border-box */ 633 height: 31px; /* border-box */
630 margin-right: 30px; 634 margin-right: 30px;
631 } 635 }
632 636
633 .filelist-panel { 637 .filelist-panel {
634 -webkit-box-flex: 1; 638 -webkit-box-flex: 1;
(...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after
2031 display: none; 2035 display: none;
2032 } 2036 }
2033 2037
2034 #progress-center-close-view.single button.open { 2038 #progress-center-close-view.single button.open {
2035 display: none; 2039 display: none;
2036 } 2040 }
2037 2041
2038 #progress-center li:not(.cancelable) button.cancel { 2042 #progress-center li:not(.cancelable) button.cancel {
2039 visibility: hidden; 2043 visibility: hidden;
2040 } 2044 }
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