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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/css/common.css
diff --git a/ui/file_manager/file_manager/foreground/css/common.css b/ui/file_manager/file_manager/foreground/css/common.css
index 2b54e30ba2562f4b1ce7cf67ae33016cfedf1b6a..a4ee0bac5c52224f56fabf861b14ef608b752f38 100644
--- a/ui/file_manager/file_manager/foreground/css/common.css
+++ b/ui/file_manager/file_manager/foreground/css/common.css
@@ -373,6 +373,14 @@ div.watch-single-video-icon {
url('../images/media/2x/watch.png') 2x);
}
+/* Entry names (File names, Folder names, Volume names, ...). */
+/* Their base bidi direction should be ltr even in RTL languages. */
+html[dir='rtl'] .entry-name {
+ direction: ltr;
+ text-align: right;
+ unicode-bidi: embed;
+}
+
/* Pop-up dialogs. */
.cr-dialog-container {
« 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