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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/navigatorTree.css

Issue 2482073002: DevTools: introduce beautiful checkmarks in navigator and editor tabs (Closed)
Patch Set: rename icons Created 4 years, 1 month 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:not(.has-mapped-files), 49 .navigator-fs-tree-item:not(.has-mapped-files),
50 .navigator-fs-folder-tree-item:not(.has-mapped-files) { 50 .navigator-fs-folder-tree-item:not(.has-mapped-files) {
51 filter: grayscale(50%); 51 filter: grayscale(50%);
52 opacity: 0.5; 52 opacity: 0.5;
53 } 53 }
54 54
55 .mapped-file-bubble { 55 .mapped-file-checkmark {
56 color: green; 56 background: #009802;
57 margin-left: 2px; 57 margin-left: 3px;
58 }
59
60 :focus .navigator-file-tree-item.selected .mapped-file-checkmark {
61 background: white !important;
58 } 62 }
59 63
60 :focus .navigator-file-tree-item.selected .icon { 64 :focus .navigator-file-tree-item.selected .icon {
61 background: white !important; 65 background: white !important;
62 } 66 }
63 67
64 :focus .navigator-folder-tree-item.selected .icon { 68 :focus .navigator-folder-tree-item.selected .icon {
65 background: white !important; 69 background: white !important;
66 } 70 }
67 71
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 127
124 .navigator-sm-folder-tree-item .tree-element-title, 128 .navigator-sm-folder-tree-item .tree-element-title,
125 .navigator-sm-script-tree-item .tree-element-title, 129 .navigator-sm-script-tree-item .tree-element-title,
126 .navigator-sm-stylesheet-tree-item .tree-element-title { 130 .navigator-sm-stylesheet-tree-item .tree-element-title {
127 font-style: italic; 131 font-style: italic;
128 } 132 }
129 133
130 :host{ 134 :host{
131 overflow-y: auto; 135 overflow-y: auto;
132 } 136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698