| 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-200); | 7 background-color: var(--paper-grey-200); |
| 8 } | 8 } |
| 9 | 9 |
| 10 user-manager-pages, | 10 user-manager-pages, |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 color: var(--paper-grey-600); | 230 color: var(--paper-grey-600); |
| 231 } | 231 } |
| 232 | 232 |
| 233 .action-box-menu-remove { | 233 .action-box-menu-remove { |
| 234 border-top: 1px solid rgba(0, 0, 0, .12); | 234 border-top: 1px solid rgba(0, 0, 0, .12); |
| 235 line-height: 32px; | 235 line-height: 32px; |
| 236 padding: 8px 12px; | 236 padding: 8px 12px; |
| 237 } | 237 } |
| 238 | 238 |
| 239 .action-box-remove-user-warning { | 239 .action-box-remove-user-warning { |
| 240 align-items: center; |
| 240 border-top: 1px solid rgba(0, 0, 0, .12); | 241 border-top: 1px solid rgba(0, 0, 0, .12); |
| 242 display: flex; |
| 243 flex-direction: column; |
| 241 font-size: inherit; | 244 font-size: inherit; |
| 242 line-height: 20px; | 245 line-height: 20px; |
| 243 padding: 12px; | 246 padding: 12px; |
| 244 text-align: center; | |
| 245 } | 247 } |
| 246 | 248 |
| 247 .action-box-remove-user-warning > * { | 249 .action-box-remove-user-warning > * { |
| 248 text-align: initial; | |
| 249 word-wrap: break-word; | 250 word-wrap: break-word; |
| 250 } | 251 } |
| 251 | 252 |
| 252 .total-count, | 253 .total-count, |
| 253 .pod:not(.synced) .action-box-remove-user-warning-text { | 254 .pod:not(.synced) .action-box-remove-user-warning-text { |
| 254 font-weight: 500; | 255 font-weight: 500; |
| 255 } | 256 } |
| 256 | 257 |
| 257 .action-box-remove-user-warning .remove-warning-button { | 258 .action-box-remove-user-warning .remove-warning-button { |
| 258 --paper-button: { | 259 --paper-button: { |
| 259 background: var(--google-red-700); | 260 background: var(--google-red-700); |
| 260 color: white; | 261 color: white; |
| 261 font-weight: 500; | 262 font-weight: 500; |
| 262 }; | 263 }; |
| 263 --paper-button-flat-keyboard-focus: { | 264 --paper-button-flat-keyboard-focus: { |
| 264 background: rgb(173, 50, 36); | 265 background: rgb(173, 50, 36); |
| 265 font-weight: 500; | 266 font-weight: 500; |
| 266 }; | 267 }; |
| 267 border-radius: 2px; | 268 @apply(--action-button); |
| 268 line-height: 32px; | |
| 269 min-width: 72px; | |
| 270 padding: 0 16px; | |
| 271 } | 269 } |
| 272 </style> | 270 </style> |
| 273 </template> | 271 </template> |
| 274 </dom-module> | 272 </dom-module> |
| OLD | NEW |