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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/serviceWorkerCacheViews.css

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: Fixed a comment Created 3 years, 6 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 | « third_party/WebKit/Source/devtools/front_end/resources/indexedDBViews.css ('k') | no next file » | 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 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 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 .service-worker-cache-data-view .data-view-toolbar { 7 .service-worker-cache-data-view .data-view-toolbar {
8 position: relative; 8 position: relative;
9 background-color: #eee; 9 background-color: #eee;
10 border-bottom: 1px solid #ccc; 10 border-bottom: 1px solid #ccc;
11 } 11 }
12 12
13 .service-worker-cache-data-view .data-view-toolbar .key-input { 13 .service-worker-cache-data-view .data-view-toolbar .key-input {
14 margin: auto 0; 14 margin: auto 0;
15 width: 200px; 15 width: 200px;
16 } 16 }
17 17
18 .service-worker-cache-data-view .data-grid { 18 .service-worker-cache-data-view .data-grid {
19 flex: auto; 19 flex: auto;
20 } 20 }
21 21
22 .service-worker-cache-data-view .data-grid .data-container tr:nth-child(even) {
23 background-color: white;
24 }
25
26 .service-worker-cache-data-view .data-grid .data-container tr:nth-child(odd) {
27 background-color: #EAF3FF;
28 }
29
30 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(1) {
31 background-color: white;
32 }
33
34 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(1) td { 22 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(1) td {
35 border: 0; 23 border: 0;
36 } 24 }
37 25
38 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(2) td { 26 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(2) td {
39 border-bottom: 1px solid #aaa; 27 border-bottom: 1px solid #aaa;
40 } 28 }
41 29
42 .service-worker-cache-data-view .data-grid .data-container tr.selected { 30 .service-worker-cache-data-view .data-grid .data-container tr.selected {
43 background-color: rgb(212, 212, 212); 31 background-color: rgb(212, 212, 212);
(...skipping 15 matching lines...) Expand all
59 47
60 .service-worker-cache-data-view .primitive-value { 48 .service-worker-cache-data-view .primitive-value {
61 padding-top: 1px; 49 padding-top: 1px;
62 } 50 }
63 51
64 .service-worker-cache-data-view .data-grid .data-container td .section .header . title { 52 .service-worker-cache-data-view .data-grid .data-container td .section .header . title {
65 white-space: nowrap; 53 white-space: nowrap;
66 text-overflow: ellipsis; 54 text-overflow: ellipsis;
67 overflow: hidden; 55 overflow: hidden;
68 } 56 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/resources/indexedDBViews.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698