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

Side by Side Diff: chrome/browser/resources/offline_pages/offline_internals.css

Issue 2089423002: [Offline Pages] Connect the offline page logs to the internals page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@i4
Patch Set: remove unneeded consts Created 4 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/resources/offline_pages/offline_internals.html » ('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 2016 The Chromium Authors. All rights reserved. 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 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 h1 { 5 h1 {
6 color: rgb(74, 142, 230); 6 color: rgb(74, 142, 230);
7 margin: 0; 7 margin: 0;
8 padding: 0; 8 padding: 0;
9 } 9 }
10 10
11 td { 11 td {
12 padding: 4px; 12 padding: 4px;
13 } 13 }
14 14
15 tr:nth-child(odd) { 15 tr:nth-child(odd) {
16 background-color: azure; 16 background-color: azure;
17 } 17 }
18 18
19 th { 19 th {
20 background-color: navy; 20 background-color: navy;
21 color: white; 21 color: white;
22 font-weight: bold; 22 font-weight: bold;
23 padding: 5px;
23 } 24 }
24 25
26 ul {
27 border: 1px solid;
28 list-style-type: none;
29 margin: 0;
30 max-height: 300px;
31 overflow: auto;
32 padding: 5px;
33 width: 100%;
34 }
35
36 ul li {
37 list-style-position: outside;
38 margin: 0 0 0 5px;
39 padding: 0;
40 }
41
42 li:nth-child(2n) {
43 background-color: lavender;
44 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/offline_pages/offline_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698