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

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

Issue 2172443004: [Offline Pages] Add network status, save request textbox, and offline url link to offline internals… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update SavePageRequest call after rebase 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 padding: 5px;
24 } 24 }
25 25
26 table {
27 margin-bottom: 5px;
28 }
29
26 ul { 30 ul {
27 border: 1px solid; 31 border: 1px solid;
28 list-style-type: none; 32 list-style-type: none;
29 margin: 0; 33 margin-top: 5px;
30 max-height: 300px; 34 max-height: 300px;
31 overflow: auto; 35 overflow: auto;
32 padding: 5px; 36 padding: 5px;
33 width: 100%; 37 width: 100%;
34 } 38 }
35 39
36 ul li { 40 ul li {
37 list-style-position: outside; 41 list-style-position: outside;
38 margin: 0 0 0 5px; 42 margin: 0 0 0 5px;
39 padding: 0; 43 padding: 0;
40 } 44 }
41 45
42 li:nth-child(2n) { 46 li:nth-child(2n) {
43 background-color: lavender; 47 background-color: lavender;
44 } 48 }
49
50 #current-status {
51 font-size: 15px;
52 }
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