| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 3 | 3 |
| 4 <!-- Common css variables for Material Design WebUI. --> | 4 <!-- Common css variables for Material Design WebUI. --> |
| 5 <style is="custom-style"> | 5 <style is="custom-style"> |
| 6 :root { | 6 :root { |
| 7 --cr-actionable: { | 7 --cr-actionable: { |
| 8 cursor: pointer; | 8 cursor: pointer; |
| 9 }; | 9 }; |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 --cr-icon-height-width: { | 22 --cr-icon-height-width: { |
| 23 height: var(--cr-icon-size); | 23 height: var(--cr-icon-size); |
| 24 width: var(--cr-icon-size); | 24 width: var(--cr-icon-size); |
| 25 } | 25 } |
| 26 | 26 |
| 27 --cr-icon-ripple-margin: calc(var(--cr-icon-ripple-padding) * -1); | 27 --cr-icon-ripple-margin: calc(var(--cr-icon-ripple-padding) * -1); |
| 28 | 28 |
| 29 --cr-paper-icon-button-margin: { | 29 --cr-paper-icon-button-margin: { |
| 30 /* Shift button so ripple overlaps the end of the row. */ | 30 /* Shift button so ripple overlaps the end of the row. */ |
| 31 -webkit-margin-end: var(--cr-icon-ripple-margin); | 31 -webkit-margin-end: var(--cr-icon-ripple-margin); |
| 32 -webkit-margin-start: var(--cr-icon-ripple-margin); | 32 -webkit-margin-start: 16px; |
| 33 } | 33 } |
| 34 | 34 |
| 35 --cr-selectable-focus: { | 35 --cr-selectable-focus: { |
| 36 background-color: var(--cr-focused-item-color); | 36 background-color: var(--cr-focused-item-color); |
| 37 outline: none; | 37 outline: none; |
| 38 } | 38 } |
| 39 --cr-separator-height: 1px; | 39 --cr-separator-height: 1px; |
| 40 --cr-separator-line: var(--cr-separator-height) solid rgba(0, 0, 0, 0.06); | 40 --cr-separator-line: var(--cr-separator-height) solid rgba(0, 0, 0, 0.06); |
| 41 --paper-checkbox-ink-size: 40px; | 41 --paper-checkbox-ink-size: 40px; |
| 42 } | 42 } |
| 43 </style> | 43 </style> |
| OLD | NEW |