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

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

Issue 298993003: Show ServiceWorkers in chrome://inspect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated kinuko's comment Created 6 years, 7 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/inspect/inspect.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 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 font-family: Arial, sans-serif; 9 font-family: Arial, sans-serif;
10 font-size: 13px; 10 font-size: 13px;
(...skipping 24 matching lines...) Expand all
35 -webkit-flex: 1; 35 -webkit-flex: 1;
36 } 36 }
37 37
38 #caption { 38 #caption {
39 color: rgb(92, 97, 102); 39 color: rgb(92, 97, 102);
40 font-size: 150%; 40 font-size: 150%;
41 padding-bottom: 10px; 41 padding-bottom: 10px;
42 padding-left: 20px; 42 padding-left: 20px;
43 } 43 }
44 44
45 #serviceworker-internals {
46 visibility: hidden;
47 }
48
45 .tab-header { 49 .tab-header {
46 -webkit-border-start: 6px solid transparent; 50 -webkit-border-start: 6px solid transparent;
47 padding-left: 15px; 51 padding-left: 15px;
48 } 52 }
49 53
50 .tab-header.selected { 54 .tab-header.selected {
51 -webkit-border-start-color: rgb(78, 87, 100); 55 -webkit-border-start-color: rgb(78, 87, 100);
52 } 56 }
53 57
54 .tab-header > button { 58 .tab-header > button {
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 } 387 }
384 388
385 #port-forwarding-config-buttons { 389 #port-forwarding-config-buttons {
386 align-items: center; 390 align-items: center;
387 display: flex; 391 display: flex;
388 } 392 }
389 393
390 #port-forwarding-config-buttons > label { 394 #port-forwarding-config-buttons > label {
391 flex-grow: 1 395 flex-grow: 1
392 } 396 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/inspect/inspect.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698