| 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 :host { | 7 :host { |
| 8 flex: none; | 8 flex: none; |
| 9 padding: 0 2px; | 9 padding: 0 2px; |
| 10 } | 10 } |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 .toolbar-button.toolbar-state-on:enabled.hover:not(:active) .toolbar-text, | 153 .toolbar-button.toolbar-state-on:enabled.hover:not(:active) .toolbar-text, |
| 154 .-theme-selection-color { | 154 .-theme-selection-color { |
| 155 color: hsl(218, 96%, 54%); | 155 color: hsl(218, 96%, 54%); |
| 156 } | 156 } |
| 157 | 157 |
| 158 .toolbar-toggled-gray .toolbar-button.toolbar-state-on { | 158 .toolbar-toggled-gray .toolbar-button.toolbar-state-on { |
| 159 background-color: #f3f3f3 !important; | 159 background-color: #f3f3f3 !important; |
| 160 } | 160 } |
| 161 | 161 |
| 162 .toolbar-button.toolbar-state-on.toolbar-toggle-with-red-color .toolbar-glyph { | 162 .toolbar-button.toolbar-state-on.toolbar-toggle-with-red-color .toolbar-glyph, |
| 163 .toolbar-button.toolbar-state-off.toolbar-default-with-red-color .toolbar-glyph
{ |
| 163 background-color: rgb(216, 0, 0) !important; | 164 background-color: rgb(216, 0, 0) !important; |
| 164 } | 165 } |
| 165 | 166 |
| 166 :host-context(.-theme-with-dark-background) .toolbar-button.toolbar-state-on.too
lbar-toggle-with-red-color .toolbar-glyph { | 167 :host-context(.-theme-with-dark-background) .toolbar-button.toolbar-state-on.too
lbar-toggle-with-red-color .toolbar-glyph, |
| 168 :host-context(.-theme-with-dark-background) .toolbar-button.toolbar-state-off.to
olbar-default-with-red-color .toolbar-glyph { |
| 167 background-color: hsl(0, 100%, 65%) !important; | 169 background-color: hsl(0, 100%, 65%) !important; |
| 168 } | 170 } |
| 169 | 171 |
| 170 | 172 |
| 171 /* Checkbox */ | 173 /* Checkbox */ |
| 172 | 174 |
| 173 .toolbar-item.checkbox { | 175 .toolbar-item.checkbox { |
| 174 padding: 0 5px 0 2px; | 176 padding: 0 5px 0 2px; |
| 175 } | 177 } |
| 176 | 178 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 margin-top: -1px; | 248 margin-top: -1px; |
| 247 width: 28px; | 249 width: 28px; |
| 248 left: -2px; | 250 left: -2px; |
| 249 } | 251 } |
| 250 | 252 |
| 251 span.toolbar-select-container.toolbar-item.warning { | 253 span.toolbar-select-container.toolbar-item.warning { |
| 252 background: #ffd7d7; | 254 background: #ffd7d7; |
| 253 padding: 0 5px 0 0; | 255 padding: 0 5px 0 0; |
| 254 margin-right: 1px; | 256 margin-right: 1px; |
| 255 } | 257 } |
| OLD | NEW |