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

Unified Diff: components/sync_driver/resources/sync_node_browser.css

Issue 2206453004: [Sync] chrome://sync-internals uses deprecated CSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [Sync] chrome://sync-internals uses deprecated CSS Created 4 years, 4 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 | components/sync_driver/resources/sync_node_browser.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/resources/sync_node_browser.css
diff --git a/components/sync_driver/resources/sync_node_browser.css b/components/sync_driver/resources/sync_node_browser.css
index 0792a72c397f1349dd9976fcc78ee4ea3b4e4e9e..8d41d511508420131c404fabd5fd2fe14a134c1b 100644
--- a/components/sync_driver/resources/sync_node_browser.css
+++ b/components/sync_driver/resources/sync_node_browser.css
@@ -11,7 +11,7 @@
}
#sync-node-browser-container {
- display: -webkit-box;
+ display: flex;
height: 750px;
}
@@ -21,7 +21,7 @@
height: 100%;
/* min-width and max-width are used by the split pane. */
max-width: 50%;
- min-width: 50px;
+ min-width: 200px;
overflow: auto;
width: 200px;
}
@@ -40,7 +40,7 @@
#sync-node-splitter {
background-color: rgb(235, 239, 249);
cursor: col-resize;
- width: 5px;
+ min-width: 5px;
<if expr="is_win">
/* TODO(akalin): Make the BMM also use this style. */
cursor: e-resize;
@@ -48,14 +48,14 @@
}
#sync-node-details-container {
- -webkit-box-flex: 1;
+ flex: 1;
height: 100%;
overflow: auto;
visibility: hidden; /* Element is invisible until first refresh. */
}
#node-details {
- width: 100%;
+ flex-grow: 1;
}
#node-details td {
« no previous file with comments | « no previous file | components/sync_driver/resources/sync_node_browser.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698