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

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

Issue 813173002: [ServiceWorker] Cache inspector out from flag, style & icon changes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed Experiment, added icon css Created 6 years 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 (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 } 317 }
318 318
319 .indexed-db-object-store-storage-tree-item .icon { 319 .indexed-db-object-store-storage-tree-item .icon {
320 content: url(Images/indexedDBObjectStore.png); 320 content: url(Images/indexedDBObjectStore.png);
321 } 321 }
322 322
323 .indexed-db-index-storage-tree-item .icon { 323 .indexed-db-index-storage-tree-item .icon {
324 content: url(Images/indexedDBIndex.png); 324 content: url(Images/indexedDBIndex.png);
325 } 325 }
326 326
327 .service-worker-cache-tree-item .icon {
328 content: url(Images/indexedDBObjectStore.png);
329 }
330
331 .service-worker-cache-storage-tree-item .icon {
332 content: url(Images/indexedDB.png);
333 }
334
327 .domstorage-storage-tree-item.local-storage .icon { 335 .domstorage-storage-tree-item.local-storage .icon {
328 content: url(Images/localStorage.png); 336 content: url(Images/localStorage.png);
329 } 337 }
330 338
331 .domstorage-storage-tree-item.session-storage .icon { 339 .domstorage-storage-tree-item.session-storage .icon {
332 content: url(Images/sessionStorage.png); 340 content: url(Images/sessionStorage.png);
333 } 341 }
334 342
335 .cookie-storage-tree-item .icon { 343 .cookie-storage-tree-item .icon {
336 content: url(Images/cookie.png); 344 content: url(Images/cookie.png);
(...skipping 11 matching lines...) Expand all
348 .storage-application-cache-connectivity-icon { 356 .storage-application-cache-connectivity-icon {
349 margin: 0 5px; 357 margin: 0 5px;
350 } 358 }
351 359
352 .storage-application-cache-connectivity { 360 .storage-application-cache-connectivity {
353 padding-right: 5px; 361 padding-right: 5px;
354 border-right: 1px solid #CCC; 362 border-right: 1px solid #CCC;
355 height: 23px; 363 height: 23px;
356 line-height: 23px 364 line-height: 23px
357 } 365 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698