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 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-bubble { | 55 .mapped-file-checkmark { |
| 56 color: green; | 56 background: #009802; |
| 57 margin-left: 2px; | 57 margin-left: 3px; |
| 58 cursor: help | |
|
dgozman
2016/11/08 20:52:29
- missing semicolon;
- I cannot remember a single
lushnikov
2016/11/09 19:30:19
Dropped the cursor.
| |
| 59 } | |
| 60 | |
| 61 :focus .navigator-file-tree-item.selected .mapped-file-checkmark { | |
| 62 background: white !important; | |
| 58 } | 63 } |
| 59 | 64 |
| 60 :focus .navigator-file-tree-item.selected .icon { | 65 :focus .navigator-file-tree-item.selected .icon { |
| 61 background: white !important; | 66 background: white !important; |
| 62 } | 67 } |
| 63 | 68 |
| 64 :focus .navigator-folder-tree-item.selected .icon { | 69 :focus .navigator-folder-tree-item.selected .icon { |
| 65 background: white !important; | 70 background: white !important; |
| 66 } | 71 } |
| 67 | 72 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 123 | 128 |
| 124 .navigator-sm-folder-tree-item .tree-element-title, | 129 .navigator-sm-folder-tree-item .tree-element-title, |
| 125 .navigator-sm-script-tree-item .tree-element-title, | 130 .navigator-sm-script-tree-item .tree-element-title, |
| 126 .navigator-sm-stylesheet-tree-item .tree-element-title { | 131 .navigator-sm-stylesheet-tree-item .tree-element-title { |
| 127 font-style: italic; | 132 font-style: italic; |
| 128 } | 133 } |
| 129 | 134 |
| 130 :host{ | 135 :host{ |
| 131 overflow-y: auto; | 136 overflow-y: auto; |
| 132 } | 137 } |
| OLD | NEW |