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

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

Issue 1111563006: [CacheStorage] Entry deletion and cache refresh in Inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test and comments Created 5 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
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;
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 34
35 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(1) td { 35 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(1) td {
36 border: 0; 36 border: 0;
37 } 37 }
38 38
39 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(2) td { 39 .service-worker-cache-data-view .data-grid .data-container tr:nth-last-child(2) td {
40 border-bottom: 1px solid #aaa; 40 border-bottom: 1px solid #aaa;
41 } 41 }
42 42
43 .service-worker-cache-data-view .data-grid .data-container tr.selected {
44 background-color: rgb(212, 212, 212);
45 color: inherit;
46 }
47
48 .service-worker-cache-data-view .data-grid:focus .data-container tr.selected {
49 background-color: rgb(56, 121, 217);
50 color: white;
51 }
52
43 .service-worker-cache-data-view .section, 53 .service-worker-cache-data-view .section,
44 .service-worker-cache-data-view .section > .header, 54 .service-worker-cache-data-view .section > .header,
45 .service-worker-cache-data-view .section > .header .title { 55 .service-worker-cache-data-view .section > .header .title {
46 margin: 0; 56 margin: 0;
47 min-height: inherit; 57 min-height: inherit;
48 line-height: inherit; 58 line-height: inherit;
49 } 59 }
50 60
51 .service-worker-cache-data-view .primitive-value { 61 .service-worker-cache-data-view .primitive-value {
52 padding-top: 1px; 62 padding-top: 1px;
53 } 63 }
54 64
55 .service-worker-cache-data-view .data-grid .data-container td .section .header . title { 65 .service-worker-cache-data-view .data-grid .data-container td .section .header . title {
56 white-space: nowrap; 66 white-space: nowrap;
57 text-overflow: ellipsis; 67 text-overflow: ellipsis;
58 overflow: hidden; 68 overflow: hidden;
59 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698