Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |