OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.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 settings. --> | 4 <!-- Common css variables for Material Design settings. --> |
5 <style is="custom-style"> | 5 <style is="custom-style"> |
6 /* We keep our vars in sort order, though some vars must be defined prior to | 6 /* We keep our vars in sort order, though some vars must be defined prior to |
7 * others. The --settings-* vars are defined explicitly prior to the --paper-* | 7 * others. The --settings-* vars are defined explicitly prior to the --paper-* |
8 * and --iron-* vars. | 8 * and --iron-* vars. |
9 */ | 9 */ |
10 :root { | 10 :root { |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 --settings-toggle-ink-size: { | 75 --settings-toggle-ink-size: { |
76 height: 40px; | 76 height: 40px; |
77 top: -12px; | 77 top: -12px; |
78 left: -12px; | 78 left: -12px; |
79 width: 40px; | 79 width: 40px; |
80 }; | 80 }; |
81 --settings-toggle-color: var(--google-blue-500); | 81 --settings-toggle-color: var(--google-blue-500); |
82 | 82 |
83 --checkbox-margin-start: 2px; | 83 --checkbox-margin-start: 2px; |
84 --checkbox-size: 16px; | 84 --checkbox-size: 16px; |
85 --checkbox-spacing: 18px; | 85 --settings-control-spacing: 18px; |
86 --iron-icon-fill-color: var(--paper-grey-600); | 86 --iron-icon-fill-color: var(--paper-grey-600); |
87 --iron-icon-height: var(--cr-icon-size); | 87 --iron-icon-height: var(--cr-icon-size); |
88 --iron-icon-width: var(--cr-icon-size); | 88 --iron-icon-width: var(--cr-icon-size); |
89 --paper-checkbox-label-color: inherit; | 89 --paper-checkbox-label-color: inherit; |
90 --paper-dialog-color: inherit; | 90 --paper-dialog-color: inherit; |
91 | 91 |
92 --cr-icon-ripple-size: 40px; | 92 --cr-icon-ripple-size: 40px; |
93 --paper-icon-button: { | 93 --paper-icon-button: { |
94 /** | 94 /** |
95 * This makes the icons 20px (in combination with "--cr-icon-ripple-size: | 95 * This makes the icons 20px (in combination with "--cr-icon-ripple-size: |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 --paper-toggle-button-unchecked-button: var(--settings-toggle-button-size); | 138 --paper-toggle-button-unchecked-button: var(--settings-toggle-button-size); |
139 --paper-toggle-button-unchecked-ink: var(--settings-toggle-ink-size); | 139 --paper-toggle-button-unchecked-ink: var(--settings-toggle-ink-size); |
140 | 140 |
141 --settings-input-underline: { | 141 --settings-input-underline: { |
142 border-color: var(--paper-grey-300); | 142 border-color: var(--paper-grey-300); |
143 }; | 143 }; |
144 | 144 |
145 --paper-input-container-underline: var(--settings-input-underline); | 145 --paper-input-container-underline: var(--settings-input-underline); |
146 } | 146 } |
147 </style> | 147 </style> |
OLD | NEW |