Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
|
dpapad
2016/06/17 02:46:01
I think the convention is to name HTML files that
tsergeant
2016/06/17 04:21:17
Done.
| |
| 2 | |
| 3 <!-- Common styles for Material Design WebUI. Included directly in | |
| 4 settings_shared_css.html. --> | |
| 5 <dom-module id="cr-shared-style"> | |
| 6 <template> | |
| 7 <style> | |
| 8 .action-button { | |
| 9 background: var(--google-blue-500); | |
| 10 color: white; | |
| 11 --paper-button-flat-keyboard-focus: { | |
| 12 background-color: rgb(58, 117, 215); /* 88% of --google-blue-500) */ | |
|
Dan Beam
2016/06/21 05:30:35
nit: remove ) in the comment, maybe?
tsergeant
2016/06/21 08:07:08
Done.
| |
| 13 }; | |
| 14 } | |
| 15 | |
| 16 .action-button[disabled] { | |
| 17 opacity: .25; /* TODO(dbeam): check this value with bettes. */ | |
| 18 } | |
| 19 | |
| 20 .cancel-button { | |
| 21 --paper-button-flat-keyboard-focus: { | |
| 22 background-color: rgba(0, 0, 0, .12); | |
| 23 }; | |
| 24 } | |
| 25 | |
| 26 .action-button, | |
| 27 .cancel-button { | |
| 28 font-weight: 500; | |
| 29 } | |
| 30 </style> | |
| 31 </template> | |
| 32 </dom-module> | |
| OLD | NEW |