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

Side by Side 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, 2 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 (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 28 matching lines...) Expand all
39 .icon { 39 .icon {
40 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 40 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
41 } 41 }
42 } /* media */ 42 } /* media */
43 43
44 .navigator-file-tree-item .icon { 44 .navigator-file-tree-item .icon {
45 -webkit-mask-position: -224px -72px; 45 -webkit-mask-position: -224px -72px;
46 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%)); 46 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%));
47 } 47 }
48 48
49 .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.
50 .navigator-fs-folder-tree-item {
51 filter: grayscale(50%);
52 opacity: 0.5;
53 }
54
55 .navigator-fs-tree-item.has-mapped-files,
56 .navigator-fs-folder-tree-item.has-mapped-files {
57 filter: unset;
58 opacity: 1;
59 }
60
61 .mapped-file-bubble {
62 color: green;
63 margin-left: 2px;
64 }
65
49 :focus .navigator-file-tree-item.selected .icon { 66 :focus .navigator-file-tree-item.selected .icon {
50 background: white !important; 67 background: white !important;
51 } 68 }
52 69
53 :focus .navigator-folder-tree-item.selected .icon { 70 :focus .navigator-folder-tree-item.selected .icon {
54 background: white !important; 71 background: white !important;
55 } 72 }
56 73
57 .tree-outline li { 74 .tree-outline li {
58 min-height: 20px; 75 min-height: 20px;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 .navigator-image-tree-item .icon, 115 .navigator-image-tree-item .icon,
99 .navigator-font-tree-item .icon { 116 .navigator-font-tree-item .icon {
100 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); 117 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%));
101 } 118 }
102 119
103 .navigator-sm-folder-tree-item .tree-element-title, 120 .navigator-sm-folder-tree-item .tree-element-title,
104 .navigator-sm-script-tree-item .tree-element-title, 121 .navigator-sm-script-tree-item .tree-element-title,
105 .navigator-sm-stylesheet-tree-item .tree-element-title { 122 .navigator-sm-stylesheet-tree-item .tree-element-title {
106 font-style: italic; 123 font-style: italic;
107 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698