OLD | NEW |
1 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 1 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> |
2 | 2 |
3 <dom-module id="user-manager-styles"> | 3 <dom-module id="user-manager-styles"> |
4 <template> | 4 <template> |
5 <style include="shared-styles"> | 5 <style include="shared-styles"> |
6 body { | 6 body { |
7 background-color: var(--paper-grey-100); | 7 background-color: var(--paper-grey-100); |
8 } | 8 } |
9 | 9 |
10 user-manager-pages, | 10 user-manager-pages, |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 .action-box-menu-title-name, | 225 .action-box-menu-title-name, |
226 .action-box-menu-title-email { | 226 .action-box-menu-title-email { |
227 height: auto; | 227 height: auto; |
228 } | 228 } |
229 | 229 |
230 .action-box-menu-title-email { | 230 .action-box-menu-title-email { |
231 color: var(--paper-grey-600); | 231 color: var(--paper-grey-600); |
232 } | 232 } |
233 | 233 |
234 .action-box-menu-remove { | 234 .action-box-menu-remove { |
235 border-top: 1px solid rgba(0, 0, 0, .12); | 235 border-top: var(--user-manager-separator-line); |
236 line-height: 32px; | 236 line-height: 32px; |
237 padding: 8px 12px; | 237 padding: 8px 12px; |
238 } | 238 } |
239 | 239 |
240 .action-box-remove-user-warning { | 240 .action-box-remove-user-warning { |
241 align-items: center; | 241 align-items: center; |
242 border-top: 1px solid rgba(0, 0, 0, .12); | 242 border-top: var(--user-manager-separator-line); |
243 display: flex; | 243 display: flex; |
244 flex-direction: column; | 244 flex-direction: column; |
245 font-size: inherit; | 245 font-size: inherit; |
246 line-height: 20px; | 246 line-height: 20px; |
247 padding: 12px; | 247 padding: 12px; |
248 } | 248 } |
249 | 249 |
250 .action-box-remove-user-warning > * { | 250 .action-box-remove-user-warning > * { |
251 word-wrap: break-word; | 251 word-wrap: break-word; |
252 } | 252 } |
(...skipping 10 matching lines...) Expand all Loading... |
263 font-weight: 500; | 263 font-weight: 500; |
264 }; | 264 }; |
265 --paper-button-flat-keyboard-focus: { | 265 --paper-button-flat-keyboard-focus: { |
266 background: rgb(173, 50, 36); | 266 background: rgb(173, 50, 36); |
267 }; | 267 }; |
268 @apply(--action-button); | 268 @apply(--action-button); |
269 } | 269 } |
270 </style> | 270 </style> |
271 </template> | 271 </template> |
272 </dom-module> | 272 </dom-module> |
OLD | NEW |