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

Side by Side Diff: chrome/browser/resources/sync_internals/about.css

Issue 388003002: Sync: Display non-severe errors on about:sync in gray color rather than red. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed failing unit test, added extra test case, addressed CR feedback. 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 #about-info { 6 #about-info {
7 -webkit-column-width: 350px; 7 -webkit-column-width: 350px;
8 } 8 }
9 9
10 #about-info > div { 10 #about-info > div {
(...skipping 26 matching lines...) Expand all
37 } 37 }
38 38
39 #typeInfo .error { 39 #typeInfo .error {
40 background: rgb(255, 204, 204); 40 background: rgb(255, 204, 204);
41 } 41 }
42 42
43 #typeInfo .warning { 43 #typeInfo .warning {
44 background: rgb(255, 255, 204); 44 background: rgb(255, 255, 204);
45 } 45 }
46 46
47 #typeInfo .disabled {
48 background: rgb(224, 224, 224);
49 }
50
47 #typeInfo .ok { 51 #typeInfo .ok {
48 background: rgb(204, 255, 204); 52 background: rgb(204, 255, 204);
49 } 53 }
50 54
51 @-webkit-keyframes highlight1 { 55 @-webkit-keyframes highlight1 {
52 0% { 56 0% {
53 background: rgb(255, 255, 0); 57 background: rgb(255, 255, 0);
54 } 58 }
55 100% { 59 100% {
56 background: #fff; 60 background: #fff;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 } 131 }
128 132
129 .traffic-event-entry-expanded .proto { 133 .traffic-event-entry-expanded .proto {
130 background-color: #fff; 134 background-color: #fff;
131 border: 1px solid #222; 135 border: 1px solid #222;
132 display: block; 136 display: block;
133 max-height: 300px; 137 max-height: 300px;
134 overflow-x: auto; 138 overflow-x: auto;
135 overflow-y: auto; 139 overflow-y: auto;
136 } 140 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698