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

Unified Diff: ui/file_manager/file_manager/foreground/css/table.css

Issue 376783002: Use CSS3 flex to lay out Files.app components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
Index: ui/file_manager/file_manager/foreground/css/table.css
diff --git a/ui/file_manager/file_manager/foreground/css/table.css b/ui/file_manager/file_manager/foreground/css/table.css
index 83516993103414213f0e7c2d43815cdffe4d7710..2a16527f6e049d470028a901d9835a26ccb0b980 100644
--- a/ui/file_manager/file_manager/foreground/css/table.css
+++ b/ui/file_manager/file_manager/foreground/css/table.css
@@ -13,13 +13,13 @@ html.col-resize * {
}
.table-row {
- display: -webkit-box;
+ display: flex;
text-align: start;
width: 100%;
}
.table-row-cell {
- display: -webkit-box;
+ display: flex;
overflow: hidden;
}
@@ -37,7 +37,7 @@ html.col-resize * {
.table-header-inner {
-webkit-user-select: none;
cursor: default;
- display: -webkit-box;
+ display: flex;
position: relative;
text-align: start;
}

Powered by Google App Engine
This is Rietveld 408576698