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

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

Issue 1883523002: chrome://snippets-internals page for debugging NTP snippets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unit tests Created 4 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
Marc Treib 2016/04/13 08:45:51 2016 :) (also in the other new files)
jkrcal 2016/04/14 15:26:59 Done.
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 html { 5 html {
6 font-size: 20px; 6 font-size: 20px;
7 } 7 }
8 8
9 #info > div { 9 #info > div {
10 width: 100%; 10 width: 100%;
11 } 11 }
12 12
13 #info h2 { 13 #info h2 {
14 color: rgb(74, 142, 230); 14 color: rgb(74, 142, 230);
15 font-size: 100%; 15 font-size: 100%;
16 margin-bottom: 0; 16 margin-bottom: 0.3em;
17 } 17 margin-top: 1em;
18
19 #info .err {
20 color: red;
21 } 18 }
22 19
23 #info .section { 20 #info .section {
24 display: inline-block; 21 display: inline-block;
25 margin-left: auto; 22 margin-left: auto;
26 margin-right: auto; 23 margin-right: auto;
27 } 24 }
28 25
29 #info .section.hidden {
30 display: none;
31 }
32
33 .section-details { 26 .section-details {
34 width: 100%; 27 width: 100%;
35 } 28 }
36 29
37 .section-details .detail, 30 .section-details .detail,
38 .section-details .value { 31 .section-details .value {
39 width: 50%; 32 width: 50%;
40 } 33 }
41 34
42 .section-details tr:nth-child(odd) { 35 td.title-link {
36 padding-bottom: 0.5em;
37 padding-top: 0.5em;
38 }
39
40 .expiry {
41 color: gray;
42 font-size: 80%;
43 }
44
45 .date {
46 white-space: nowrap;
47 }
48
49 .url {
50 display: inline-block;
51 font-size: 80%;
52 word-break: break-all;
53 }
54
55 .snippet-detail {
56 font-size: 90%;
57 }
58
59 .snippet-hidden {
60 display: none;
61 }
62
63 table.section-details > tbody > tr:nth-child(odd) {
43 background: rgb(239, 243, 255); 64 background: rgb(239, 243, 255);
44 } 65 }
45 66
46 #json-value { 67 .detail {
47 font-size: 75%; 68 color: gray;
69 font-weight: normal;
48 } 70 }
71
72 .forms {
73 margin-top: 0.3em;
74 }
75
76 input#submit-clear {
77 margin-bottom: 0.5em;
78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698