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

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

Issue 273983002: Keep base direction 'ltr' for entry names consistently. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use single quotation for css files. 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
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/directory_tree.js » ('j') | 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 /* 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/directory_tree.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698