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

Side by Side Diff: chrome/browser/resources/about_invalidations.css

Issue 159773006: [invalidations] Added table with registered objectsIds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@about_invalidations_clean
Patch Set: Fixed some nits Created 6 years, 10 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 body { 6 body {
7 font-family: Ubuntu, Arial, sans-serif; 7 font-family: Ubuntu, Arial, sans-serif;
8 font-size: 80%; 8 font-size: 80%;
9 } 9 }
10 10
11 #invalidations-info p { 11 #invalidations-info .lead {
12 color: rgb(74, 142, 230); 12 color: rgb(74, 142, 230);
13 display: block;
13 font-size: 100%; 14 font-size: 100%;
14 font-weight: bold; 15 font-weight: bold;
15 margin-bottom: 0; 16 margin-top: 10px;
17 word-wrap: normal;
16 } 18 }
17 19
20
rlarocque 2014/02/15 00:09:39 Remove extra newline.
mferreria_g 2014/02/15 01:27:39 Done.
18 #invalidations-info .section { 21 #invalidations-info .section {
19 display: inline-block; 22 display: inline-block;
20 margin-left: auto; 23 margin-left: auto;
21 margin-right: auto; 24 margin-right: auto;
22 width: 100%; 25 width: 100%;
23 } 26 }
24 27
28 #objectsid-table-container .td {
29 font-size: 50%;
30 }
31
32 #objectsid-table-container .error {
33 background: rgb(255, 204, 204);
34 }
35
36 #objectsid-table-container .header {
37 background: rgb(255, 255, 204);
38 }
39
40 #objectsid-table-container .content {
41 background: rgb(204, 255, 204);
42 }
43
44 #objectsid-table-container .greyed {
45 background: rgb(204, 204, 204);
46 }
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698