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

Unified Diff: chrome/browser/resources/sync_internals/sync_search.css

Issue 1334173006: Move sync_internals resources and constants to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gcmInternals
Patch Set: Rebase Created 5 years, 3 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: chrome/browser/resources/sync_internals/sync_search.css
diff --git a/chrome/browser/resources/sync_internals/sync_search.css b/chrome/browser/resources/sync_internals/sync_search.css
deleted file mode 100644
index 24c955b97d6f537da429db90977dc04073948d16..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/sync_internals/sync_search.css
+++ /dev/null
@@ -1,59 +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-search-query {
- width: 16em;
-}
-
-#sync-search-query[error] {
- background-color: rgb(255,170,170);
-}
-
-.sync-search-quicklink {
- background-color: rgb(239,243,255);
- padding-left: 10px;
- padding-right: 10px;
-}
-
-#sync-search-status {
- color: rgb(51,51,51);
- font-style: italic;
-}
-
-#sync-results-container {
- display: -webkit-box;
- /* Should be > #sync-page's min-height. */
- /* TODO(akalin): Find a less hacky way to do this. */
- height: 750px;
-}
-
-#sync-results-list {
- -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: 50px;
- overflow: auto;
- padding: 5px;
- width: 275px;
-}
-
-#sync-results-splitter {
- background-color: rgb(235, 239, 249);
- cursor: col-resize;
-<if expr="is_win">
- /* TODO(akalin): Make the BMM also use this style. */
- cursor: e-resize;
-</if>
- width: 5px;
-}
-
-#sync-result-details-container {
- -webkit-box-flex: 1;
- height: 100%;
- overflow: auto;
- /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
- width: 100%;
-}
« no previous file with comments | « chrome/browser/resources/sync_internals/sync_node_browser.js ('k') | chrome/browser/resources/sync_internals/sync_search.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698