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

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

Issue 2679013004: [DevTools] Show an empty Manifest view if no manifest (Closed)
Patch Set: [DevTools] Disable "Manifest" if the site has none. Created 3 years, 10 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 } 51 }
52 52
53 .navigator-image-tree-item, 53 .navigator-image-tree-item,
54 .navigator-font-tree-item { 54 .navigator-font-tree-item {
55 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); 55 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%));
56 } 56 }
57 57
58 .resource-tree-item { 58 .resource-tree-item {
59 background: rgba(90, 90, 90, .7); 59 background: rgba(90, 90, 90, .7);
60 } 60 }
61
62 .resource-sidebar-item-disabled {
63 opacity: 0.7;
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698