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

Side by Side Diff: components/ntp_tiles/webui/resources/ntp_tiles_internals.css

Issue 2557103004: Add chrome://site-tiles-internals/ (Closed)
Patch Set: rebase Created 4 years 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
(Empty)
1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 html {
6 font-size: 20px;
7 }
8
9 div.section {
10 width: 100%;
11 display: inline-block;
12 margin-left: auto;
13 margin-right: auto;
14 }
15
16 div.section.hidden {
17 display: none;
18 }
19
20 h2 {
21 color: rgb(74, 142, 230);
22 font-size: 100%;
23 margin-bottom: 0;
24 }
25
26 .err {
27 color: red;
28 }
29
30 .section-details {
31 width: 100%;
32 }
33
34 .section-details th {
35 background: rgb(239, 243, 255);
36 }
37
38 .section-details td {
39 vertical-align: top;
40 }
41
42 .section-details td.detail {
43 text-align: right;
44 width: 1px;
45 white-space: nowrap;
46 }
47
48 .section-details td.value input {
49 width: 100%;
50 }
51
52 #json-value {
53 font-size: 75%;
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698