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

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

Issue 2916193003: [CacheStorage] [IndexedDB] [DevTools] Added refresh button to category view of cache storage and in… (Closed)
Patch Set: Switched to refresh section buttons 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/ApplicationPanelSidebar.js ('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 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 }
11 11
12 .tree-outline > ol { 12 .tree-outline > ol {
13 padding-bottom: 10px; 13 padding-bottom: 10px;
14 } 14 }
15 15
16 .tree-outline li { 16 .tree-outline li {
17 min-height: 20px; 17 min-height: 20px;
18 } 18 }
19 19
20 li.storage-group-list-item { 20 li.storage-group-list-item {
21 border-top: 1px solid rgb(230, 230, 230); 21 border-top: 1px solid rgb(230, 230, 230);
22 padding: 10px 8px 6px 8px; 22 padding: 10px 8px 6px 8px;
23 } 23 }
24 24
25 li.storage-group-list-item::before { 25 li.storage-group-list-item::before {
26 display: none; 26 display: none;
27 } 27 }
28 28
29 li.storage-group-list-item
30 .trailing-icons {
31 width: 14px;
32 height: 14px;
33 margin-left: 6px;
34 }
35
36 li.storage-group-list-item
37 .trailing-icons
38 .sidebar-section-button {
39 position: relative;
40 top: -1px;
41 left: -8px;
42 }
43
29 .navigator-tree-item { 44 .navigator-tree-item {
30 margin: -3px -7px -3px -7px; 45 margin: -3px -7px -3px -7px;
31 } 46 }
32 47
33 .navigator-file-tree-item { 48 .navigator-file-tree-item {
34 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%)); 49 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%));
35 } 50 }
36 51
37 .navigator-folder-tree-item { 52 .navigator-folder-tree-item {
38 background: linear-gradient(45deg, hsl(210, 82%, 65%), hsl(210, 82%, 80%)); 53 background: linear-gradient(45deg, hsl(210, 82%, 65%), hsl(210, 82%, 80%));
(...skipping 12 matching lines...) Expand all
51 } 66 }
52 67
53 .navigator-image-tree-item, 68 .navigator-image-tree-item,
54 .navigator-font-tree-item { 69 .navigator-font-tree-item {
55 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); 70 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%));
56 } 71 }
57 72
58 .resource-tree-item { 73 .resource-tree-item {
59 background: rgba(90, 90, 90, .7); 74 background: rgba(90, 90, 90, .7);
60 } 75 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/resources/ApplicationPanelSidebar.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698