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

Unified Diff: components/sync_driver/resources/about.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/proxy_data_type_controller.cc ('k') | components/sync_driver/resources/about.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/resources/about.css
diff --git a/components/sync_driver/resources/about.css b/components/sync_driver/resources/about.css
deleted file mode 100644
index 50357f648cc8ce4a253f38ad5ddb8a9fdf0ab531..0000000000000000000000000000000000000000
--- a/components/sync_driver/resources/about.css
+++ /dev/null
@@ -1,145 +0,0 @@
-/* Copyright 2013 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. */
-
-#about-info {
- -webkit-column-width: 350px;
-}
-
-#about-info > div {
- -webkit-column-break-inside: avoid;
- width: 350px;
-}
-
-#about-info h2 {
- color: rgb(74, 142, 230);
- font-size: 100%;
- margin-bottom: 0;
-}
-
-#about-info .err {
- color: red;
-}
-
-#about-info .section {
- display: inline-block;
- margin-left: auto;
- margin-right: auto;
-}
-
-.about-details {
- width: 100%;
-}
-
-.about-details tr:nth-child(odd) {
- background: rgb(239, 243, 255);
-}
-
-#typeInfo .error {
- background: rgb(255, 204, 204);
-}
-
-#typeInfo .warning {
- background: rgb(255, 255, 204);
-}
-
-#typeInfo .disabled {
- background: rgb(224, 224, 224);
-}
-
-#typeInfo .ok {
- background: rgb(204, 255, 204);
-}
-
-@-webkit-keyframes highlight1 {
- 0% {
- background: rgb(255, 255, 0);
- }
- 100% {
- background: #fff;
- }
-}
-
-@-webkit-keyframes highlight2 {
- 0% {
- background: rgb(155, 158, 166);
- }
- 100% {
- background: rgb(239, 243, 255);
- }
-}
-
-.about-details [highlighted] {
- -webkit-animation-duration: 3s;
- -webkit-animation-name: highlight1;
- -webkit-animation-timing-function: linear;
-}
-
-.about-details [highlighted]:nth-child(odd) {
- -webkit-animation-duration: 3s;
- -webkit-animation-name: highlight2;
- -webkit-animation-timing-function: linear;
-}
-
-.about-details .uninitialized {
- color: #7f7f7f;
-}
-
-#status {
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- width: 300px;
-}
-
-#dump-status {
- margin: 2px;
-}
-
-#import-status {
- margin: 2px;
-}
-
-#traffic-event-container {
- border: 1px solid;
- height: 500px;
- max-width: 500px;
- overflow-y: auto;
-}
-
-.traffic-event-entry {
- border: 2px outset;
- padding: 0.5em;
-}
-
-.traffic-event-entry:hover {
- background-color: #eee;
-}
-
-.traffic-event-entry .time {
- color: #222;
-}
-
-.traffic-event-entry .type {
- font-weight: bold;
- margin: 0.5em;
- white-space: nowrap;
-}
-
-.traffic-event-entry .details {
- margin: 0.5em;
- overflow-x: auto;
-}
-
-.traffic-event-entry .proto {
- display: none;
-}
-
-.traffic-event-entry-expanded .proto {
- background-color: #fff;
- border: 1px solid #222;
- display: block;
- max-height: 300px;
- overflow-x: auto;
- overflow-y: auto;
-}
« no previous file with comments | « components/sync_driver/proxy_data_type_controller.cc ('k') | components/sync_driver/resources/about.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698