| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .elements-disclosure { | 7 .elements-disclosure { |
| 8 width: 100%; | 8 width: 100%; |
| 9 display: inline-block; | 9 display: inline-block; |
| 10 line-height: normal; | 10 line-height: normal; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 .elements-tree-outline ol.shadow-root-depth-1 { | 151 .elements-tree-outline ol.shadow-root-depth-1 { |
| 152 background-color: rgba(0, 0, 0, 0.01); | 152 background-color: rgba(0, 0, 0, 0.01); |
| 153 } | 153 } |
| 154 | 154 |
| 155 .elements-tree-outline ol.shadow-root-deep { | 155 .elements-tree-outline ol.shadow-root-deep { |
| 156 background-color: transparent; | 156 background-color: transparent; |
| 157 } | 157 } |
| 158 | 158 |
| 159 .elements-tree-editor { | 159 .elements-tree-editor { |
| 160 -webkit-user-select: text; | 160 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), |
| 161 -webkit-user-modify: read-write-plaintext-only; | 161 0 2px 4px rgba(0, 0, 0, 0.2), |
| 162 0 2px 6px rgba(0, 0, 0, 0.1); |
| 163 margin-right: 4px; |
| 162 } | 164 } |
| 163 | 165 |
| 164 .elements-disclosure li.elements-drag-over .selection { | 166 .elements-disclosure li.elements-drag-over .selection { |
| 165 display: block; | 167 display: block; |
| 166 margin-top: -2px; | 168 margin-top: -2px; |
| 167 border-top: 2px solid rgb(56, 121, 217); | 169 border-top: 2px solid rgb(56, 121, 217); |
| 168 } | 170 } |
| 169 | 171 |
| 170 .elements-disclosure li.in-clipboard .highlight { | 172 .elements-disclosure li.in-clipboard .highlight { |
| 171 outline: 1px dotted darkgrey; | 173 outline: 1px dotted darkgrey; |
| 172 } | 174 } |
| 173 | 175 |
| 174 .CodeMirror { | 176 .CodeMirror { |
| 175 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), | |
| 176 0 2px 4px rgba(0, 0, 0, 0.2), | |
| 177 0 2px 6px rgba(0, 0, 0, 0.1); | |
| 178 background-color: white; | 177 background-color: white; |
| 178 height: 300px !important; |
| 179 } | 179 } |
| 180 | 180 |
| 181 .CodeMirror-lines { | 181 .CodeMirror-lines { |
| 182 padding: 0; | 182 padding: 0; |
| 183 } | 183 } |
| 184 | 184 |
| 185 .CodeMirror pre { | 185 .CodeMirror pre { |
| 186 padding: 0; | 186 padding: 0; |
| 187 } | 187 } |
| 188 | 188 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 border-color: hsla(0,0%,0%,0.1); | 356 border-color: hsla(0,0%,0%,0.1); |
| 357 } | 357 } |
| 358 | 358 |
| 359 .elements-tree-outline ol.shadow-root { | 359 .elements-tree-outline ol.shadow-root { |
| 360 border-color: hsla(0,0%,80%,1); | 360 border-color: hsla(0,0%,80%,1); |
| 361 } | 361 } |
| 362 | 362 |
| 363 li.selected:not(.always-parent) + ol.children { | 363 li.selected:not(.always-parent) + ol.children { |
| 364 border-color: hsla(216,68%,80%,1) !important; | 364 border-color: hsla(216,68%,80%,1) !important; |
| 365 } | 365 } |
| OLD | NEW |