| 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 /* Same padding as paper-icon-button. */ |
| 11 --cr-icon-padding: 8px; |
| 10 --cr-selectable-focus: { | 12 --cr-selectable-focus: { |
| 11 background-color: var(--cr-focused-item-color); | 13 background-color: var(--cr-focused-item-color); |
| 12 outline: none; | 14 outline: none; |
| 13 } | 15 } |
| 14 --cr-separator-line: 1px solid rgba(0, 0, 0, 0.06); | 16 --cr-separator-line: 1px solid rgba(0, 0, 0, 0.06); |
| 15 --paper-checkbox-ink-size: 40px; | 17 --paper-checkbox-ink-size: 40px; |
| 16 } | 18 } |
| 17 </style> | 19 </style> |
| OLD | NEW |