Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> |
| 2 | 2 |
| 3 <!-- Common css variables for Material Design WebUI. --> | 3 <!-- Common css variables for Material Design WebUI. --> |
| 4 <style is="custom-style"> | 4 <style is="custom-style"> |
| 5 :root { | 5 :root { |
| 6 --cr-actionable: { | 6 --cr-actionable: { |
| 7 cursor: pointer; | 7 cursor: pointer; |
| 8 }; | 8 }; |
| 9 --cr-focused-item-color: var(--google-grey-300); | 9 --cr-focused-item-color: var(--google-grey-300); |
| 10 --cr-separator-line: 1px solid rgba(0, 0, 0, 0.06); | 10 --cr-separator-line: 1px solid rgba(0, 0, 0, 0.06); |
| 11 } | 11 } |
| 12 | |
| 13 /* | |
| 14 * Because everyone assumes [hidden] overrides {display: foo}. | |
| 15 * TODO(michaelpg): Rename to shared_global_css.html and import only from | |
| 16 * entry points (md_foo.html and tests). Eventually find alternative solution | |
| 17 * to this deprecated /deep/ selector (crbug.com/498405). | |
| 18 */ | |
| 19 :root /deep/ [hidden] { | |
| 20 display: none !important; | |
| 21 } | |
|
dschuyler
2016/08/09 02:24:11
Could this be a separate CL?
michaelpg
2016/08/09 02:49:00
It would have to be a precursor CL, as this rule i
dschuyler
2016/08/09 17:19:13
Yeah. I'd like git bisect to be able to help test
michaelpg
2016/08/10 16:11:17
Done.
| |
| 12 </style> | 22 </style> |
| OLD | NEW |