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

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

Issue 1940993002: DevTools: simplify Service Workers panel UI, remove non-actionable data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed. Created 4 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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 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 .tree-outline { 7 .tree-outline {
8 padding-left: 0; 8 padding-left: 0;
9 color: rgb(90, 90, 90); 9 color: rgb(90, 90, 90);
10 } 10 }
(...skipping 18 matching lines...) Expand all
29 } 29 }
30 30
31 li.storage-group-list-item::before { 31 li.storage-group-list-item::before {
32 display: none; 32 display: none;
33 } 33 }
34 34
35 .navigator-tree-item .icon { 35 .navigator-tree-item .icon {
36 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 36 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
37 -webkit-mask-size: 352px 168px; 37 -webkit-mask-size: 352px 168px;
38 width: 32px; 38 width: 32px;
39 height: 24px; 39 height: 20px;
40 margin: -3px -3px -3px -7px;
41 -webkit-mask-position: -224px -72px; 40 -webkit-mask-position: -224px -72px;
41 position: relative;
42 top: -2px;
43 margin-right: -3px;
42 } 44 }
43 45
44 @media (-webkit-min-device-pixel-ratio: 1.5) { 46 @media (-webkit-min-device-pixel-ratio: 1.5) {
45 .navigator-tree-item .icon { 47 .navigator-tree-item .icon {
46 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 48 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
47 } 49 }
48 } /* media */ 50 } /* media */
49 51
50 .navigator-file-tree-item .icon { 52 .navigator-file-tree-item .icon {
51 -webkit-mask-position: -224px -72px; 53 -webkit-mask-position: -224px -72px;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 .domstorage-storage-tree-item.session-storage .icon { 136 .domstorage-storage-tree-item.session-storage .icon {
135 content: url(Images/sessionStorage.png); 137 content: url(Images/sessionStorage.png);
136 } 138 }
137 139
138 .cookie-storage-tree-item .icon { 140 .cookie-storage-tree-item .icon {
139 content: url(Images/cookie.png); 141 content: url(Images/cookie.png);
140 } 142 }
141 143
142 .application-cache-storage-tree-item .icon { 144 .application-cache-storage-tree-item .icon {
143 content: url(Images/applicationCache.png); 145 content: url(Images/applicationCache.png);
144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698