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

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

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. 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 | « components/sync_driver/resources/sync_log.js ('k') | 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
deleted file mode 100644
index 8d41d511508420131c404fabd5fd2fe14a134c1b..0000000000000000000000000000000000000000
--- a/components/sync_driver/resources/sync_node_browser.css
+++ /dev/null
@@ -1,68 +0,0 @@
-/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-#sync-node-browser-refresher {
- border-bottom: 1px rgb(160,160,160) solid;
-}
-
-#sync-node-browser-refresher > * {
- display: inline-block;
-}
-
-#sync-node-browser-container {
- display: flex;
- height: 750px;
-}
-
-#sync-node-tree-container {
- -webkit-padding-start: 10px;
- box-sizing: border-box;
- height: 100%;
- /* min-width and max-width are used by the split pane. */
- max-width: 50%;
- min-width: 200px;
- overflow: auto;
- width: 200px;
-}
-
-#sync-node-tree {
- display: inline-block;
- min-width: 100%;
- overflow: visible; /* let the container do the scrolling */
-}
-
-/* TODO(akalin): Find a better icon to use for leaf nodes. */
-#sync-node-tree .leaf .tree-label {
- background-image: url(../../../ui/webui/resources/images/star_small.png);
-}
-
-#sync-node-splitter {
- background-color: rgb(235, 239, 249);
- cursor: col-resize;
- min-width: 5px;
-<if expr="is_win">
- /* TODO(akalin): Make the BMM also use this style. */
- cursor: e-resize;
-</if>
-}
-
-#sync-node-details-container {
- flex: 1;
- height: 100%;
- overflow: auto;
- visibility: hidden; /* Element is invisible until first refresh. */
-}
-
-#node-details {
- flex-grow: 1;
-}
-
-#node-details td {
- vertical-align: top;
- white-space: nowrap;
-}
-
-#node-details tr:nth-child(odd) {
- background: rgb(239, 243, 255);
-}
« no previous file with comments | « components/sync_driver/resources/sync_log.js ('k') | components/sync_driver/resources/sync_node_browser.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698