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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 } | 62 } |
| 63 | 63 |
| 64 :focus .navigator-folder-tree-item.selected .icon { | 64 :focus .navigator-folder-tree-item.selected .icon { |
| 65 background: white !important; | 65 background: white !important; |
| 66 } | 66 } |
| 67 | 67 |
| 68 .tree-outline li { | 68 .tree-outline li { |
| 69 min-height: 20px; | 69 min-height: 20px; |
| 70 } | 70 } |
| 71 | 71 |
| 72 .tree-outline li:hover:not(.selected) .selection { | |
| 73 display:block; | |
|
lushnikov
2016/10/22 00:55:38
nit: missing space
einbinder
2016/10/22 02:32:16
Done.
| |
| 74 background-color: rgba(56, 121, 217, 0.1); | |
| 75 } | |
| 76 | |
| 72 .navigator-folder-tree-item .icon { | 77 .navigator-folder-tree-item .icon { |
| 73 -webkit-mask-position: -64px -120px; | 78 -webkit-mask-position: -64px -120px; |
| 74 background-color: #555; | 79 background-color: #555; |
| 75 } | 80 } |
| 76 | 81 |
| 77 .navigator-domain-tree-item .icon { | 82 .navigator-domain-tree-item .icon { |
| 78 -webkit-mask-position: -160px -144px; | 83 -webkit-mask-position: -160px -144px; |
| 79 } | 84 } |
| 80 | 85 |
| 81 .navigator-frame-tree-item .icon { | 86 .navigator-frame-tree-item .icon { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 118 | 123 |
| 119 .navigator-sm-folder-tree-item .tree-element-title, | 124 .navigator-sm-folder-tree-item .tree-element-title, |
| 120 .navigator-sm-script-tree-item .tree-element-title, | 125 .navigator-sm-script-tree-item .tree-element-title, |
| 121 .navigator-sm-stylesheet-tree-item .tree-element-title { | 126 .navigator-sm-stylesheet-tree-item .tree-element-title { |
| 122 font-style: italic; | 127 font-style: italic; |
| 123 } | 128 } |
| 124 | 129 |
| 125 :host{ | 130 :host{ |
| 126 overflow-y: auto; | 131 overflow-y: auto; |
| 127 } | 132 } |
| OLD | NEW |