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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css

Issue 2369173002: DevTools: [Workspace] show network files in navigator (Closed)
Patch Set: simplify event listeners Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css b/third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css
index 6072412f806fb46c4fc4fdb347a2927670e05a45..f8a2f70357d71600a98b4262346b51b8f7585101 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css
+++ b/third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css
@@ -46,6 +46,23 @@
background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%));
}
+.navigator-fs-tree-item,
dgozman 2016/09/27 17:08:47 .navigator-fs-tree-item:not(.has-mapped-files)
lushnikov 2016/09/27 21:29:13 Done.
+.navigator-fs-folder-tree-item {
+ filter: grayscale(50%);
+ opacity: 0.5;
+}
+
+.navigator-fs-tree-item.has-mapped-files,
+.navigator-fs-folder-tree-item.has-mapped-files {
+ filter: unset;
+ opacity: 1;
+}
+
+.mapped-file-bubble {
+ color: green;
+ margin-left: 2px;
+}
+
:focus .navigator-file-tree-item.selected .icon {
background: white !important;
}

Powered by Google App Engine
This is Rietveld 408576698