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 paper-button { | 5 paper-button { |
| 6 border-color: var(--oobe-text-button-border-color, transparent); | 6 border-color: var(--oobe-text-button-border-color, transparent); |
| 7 border-radius: 2px; | 7 border-radius: 2px; |
| 8 border-style: solid; | 8 border-style: solid; |
| 9 border-width: 2px; | 9 border-width: 2px; |
| 10 height: 32px; /* = 28px + 2 * 2px border */ | 10 height: 32px; /* = 28px + 2 * 2px border */ |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 #textButton:not([inverse]):not([disabled]) #container { | 24 #textButton:not([inverse]):not([disabled]) #container { |
| 25 background-color: white | 25 background-color: white |
| 26 color: var(--google-blue-500); | 26 color: var(--google-blue-500); |
| 27 } | 27 } |
| 28 | 28 |
| 29 #textButton[inverse]:not([disabled]) #container { | 29 #textButton[inverse]:not([disabled]) #container { |
| 30 background-color: var(--google-blue-500); | 30 background-color: var(--google-blue-500); |
| 31 color: white; | 31 color: white; |
| 32 } | 32 } |
| 33 | 33 |
| 34 #textButton[border]:not([disabled]) #container { | |
| 35 border-color: rgba(0, 0, 0, 0.2); | |
|
jdufault
2017/04/06 01:04:52
use --google-* if possible
Wenzhao (Colin) Zang
2017/04/07 02:55:36
Just want it to be consistent with another materia
| |
| 36 border-style: solid; | |
| 37 border-width: 1px; | |
| 38 } | |
| 39 | |
| 34 ::content * { | 40 ::content * { |
| 35 font: var(--oobe-roboto-medium), sans-serif; | 41 font: var(--oobe-roboto-medium), sans-serif; |
| 36 font-size: 12px; | 42 font-size: 12px; |
| 37 text-transform: none; | 43 text-transform: none; |
| 38 } | 44 } |
| OLD | NEW |