| 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:not(.has-mapped-files), |
| 50 .navigator-fs-folder-tree-item:not(.has-mapped-files) { |
| 51 filter: grayscale(50%); |
| 52 opacity: 0.5; |
| 53 } |
| 54 |
| 55 .mapped-file-bubble { |
| 56 color: green; |
| 57 margin-left: 2px; |
| 58 } |
| 59 |
| 49 :focus .navigator-file-tree-item.selected .icon { | 60 :focus .navigator-file-tree-item.selected .icon { |
| 50 background: white !important; | 61 background: white !important; |
| 51 } | 62 } |
| 52 | 63 |
| 53 :focus .navigator-folder-tree-item.selected .icon { | 64 :focus .navigator-folder-tree-item.selected .icon { |
| 54 background: white !important; | 65 background: white !important; |
| 55 } | 66 } |
| 56 | 67 |
| 57 .tree-outline li { | 68 .tree-outline li { |
| 58 min-height: 20px; | 69 min-height: 20px; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 .navigator-image-tree-item .icon, | 109 .navigator-image-tree-item .icon, |
| 99 .navigator-font-tree-item .icon { | 110 .navigator-font-tree-item .icon { |
| 100 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); | 111 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); |
| 101 } | 112 } |
| 102 | 113 |
| 103 .navigator-sm-folder-tree-item .tree-element-title, | 114 .navigator-sm-folder-tree-item .tree-element-title, |
| 104 .navigator-sm-script-tree-item .tree-element-title, | 115 .navigator-sm-script-tree-item .tree-element-title, |
| 105 .navigator-sm-stylesheet-tree-item .tree-element-title { | 116 .navigator-sm-stylesheet-tree-item .tree-element-title { |
| 106 font-style: italic; | 117 font-style: italic; |
| 107 } | 118 } |
| OLD | NEW |