Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 /* TODO(mahmadi): Figure out why Material Design color palette colors don't work | |
| 6 in this file. */ | |
|
Dan Beam
2016/03/25 02:39:14
you probably need to import this file in user_mana
Moe
2016/03/29 18:54:39
Importing color.html doesn't seem to fix it by its
| |
| 7 :root { | |
| 8 --google-blue-700: rgb(51, 103, 214); | |
| 9 } | |
| 10 | |
| 5 body { | 11 body { |
| 6 background-color: #eee; | 12 background-color: #eee; |
| 7 } | 13 } |
| 8 | 14 |
| 15 a { | |
| 16 color: var(--google-blue-700); | |
| 17 text-decoration: none; | |
| 18 } | |
| 19 | |
| 9 /* Overrides for the desktop user manager screen. */ | 20 /* Overrides for the desktop user manager screen. */ |
| 10 | 21 |
| 11 #outer-container { | 22 #outer-container { |
| 12 min-height: 0; | 23 min-height: 0; |
| 13 } | 24 } |
| 14 | 25 |
| 15 .bubble.faded { | 26 .bubble.faded { |
| 16 opacity: 0; | 27 opacity: 0; |
| 17 } | 28 } |
| 18 | 29 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 198 .action-box-remove-user-warning .remove-warning-button { | 209 .action-box-remove-user-warning .remove-warning-button { |
| 199 height: 30px; | 210 height: 30px; |
| 200 } | 211 } |
| 201 | 212 |
| 202 .action-box-remove-user-warning .remove-warning-button:focus { | 213 .action-box-remove-user-warning .remove-warning-button:focus { |
| 203 /* Override the default blue border inherited from | 214 /* Override the default blue border inherited from |
| 204 button.custom-appearance:focus. */ | 215 button.custom-appearance:focus. */ |
| 205 border: 1px solid transparent !important; | 216 border: 1px solid transparent !important; |
| 206 box-shadow: inset 0 0 0 1px #fff; | 217 box-shadow: inset 0 0 0 1px #fff; |
| 207 } | 218 } |
| OLD | NEW |