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

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

Issue 1942523002: DevTools: render parsed manifest data in the resources panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 } 111 }
112 112
113 .service-worker-cache-storage-tree-item .icon { 113 .service-worker-cache-storage-tree-item .icon {
114 content: url(Images/indexedDB.png); 114 content: url(Images/indexedDB.png);
115 } 115 }
116 116
117 .service-workers-tree-item .icon { 117 .service-workers-tree-item .icon {
118 content: url(Images/serviceWorker.svg); 118 content: url(Images/serviceWorker.svg);
119 } 119 }
120 120
121 li.service-workers-tree-item {
122 padding: 16px 0;
123 }
124
125 :focus .service-workers-tree-item.selected .icon { 121 :focus .service-workers-tree-item.selected .icon {
126 -webkit-filter: invert(); 122 -webkit-filter: invert();
127 } 123 }
128 124
129 .-theme-with-dark-background .service-workers-tree-item .icon, 125 .-theme-with-dark-background .service-workers-tree-item .icon,
130 { 126 {
131 -webkit-filter: invert(70%); 127 -webkit-filter: invert(70%);
132 } 128 }
133 129
134 .domstorage-storage-tree-item.local-storage .icon { 130 .domstorage-storage-tree-item.local-storage .icon {
135 content: url(Images/localStorage.png); 131 content: url(Images/localStorage.png);
136 } 132 }
137 133
138 .domstorage-storage-tree-item.session-storage .icon { 134 .domstorage-storage-tree-item.session-storage .icon {
139 content: url(Images/sessionStorage.png); 135 content: url(Images/sessionStorage.png);
140 } 136 }
141 137
142 .cookie-storage-tree-item .icon { 138 .cookie-storage-tree-item .icon {
143 content: url(Images/cookie.png); 139 content: url(Images/cookie.png);
144 } 140 }
145 141
146 .application-cache-storage-tree-item .icon { 142 .application-cache-storage-tree-item .icon {
147 content: url(Images/applicationCache.png); 143 content: url(Images/applicationCache.png);
148 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698