| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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-checkmark { | |
| 56 background: #009802; | |
| 57 margin-left: 3px; | |
| 58 } | |
| 59 | |
| 60 :focus .navigator-file-tree-item.selected .mapped-file-checkmark { | |
| 61 background: white !important; | |
| 62 } | |
| 63 | |
| 64 :focus .navigator-file-tree-item.selected .icon { | 55 :focus .navigator-file-tree-item.selected .icon { |
| 65 background: white !important; | 56 background: white !important; |
| 66 } | 57 } |
| 67 | 58 |
| 68 :focus .navigator-folder-tree-item.selected .icon { | 59 :focus .navigator-folder-tree-item.selected .icon { |
| 69 background: white !important; | 60 background: white !important; |
| 70 } | 61 } |
| 71 | 62 |
| 72 .tree-outline li { | 63 .tree-outline li { |
| 73 min-height: 20px; | 64 min-height: 20px; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 118 |
| 128 .navigator-sm-folder-tree-item .tree-element-title, | 119 .navigator-sm-folder-tree-item .tree-element-title, |
| 129 .navigator-sm-script-tree-item .tree-element-title, | 120 .navigator-sm-script-tree-item .tree-element-title, |
| 130 .navigator-sm-stylesheet-tree-item .tree-element-title { | 121 .navigator-sm-stylesheet-tree-item .tree-element-title { |
| 131 font-style: italic; | 122 font-style: italic; |
| 132 } | 123 } |
| 133 | 124 |
| 134 :host{ | 125 :host{ |
| 135 overflow-y: auto; | 126 overflow-y: auto; |
| 136 } | 127 } |
| OLD | NEW |