| 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: #eee; | 7 background-color: #eee; |
| 8 } | 8 } |
| 9 | 9 |
| 10 /* Overrides for the desktop user manager screen. */ | 10 /* Overrides for the desktop user manager screen. */ |
| 11 #login-header-bar { |
| 12 bottom: 0; |
| 13 left: 0; |
| 14 position: absolute; |
| 15 right: 0; |
| 16 } |
| 11 | 17 |
| 12 #outer-container { | 18 #outer-container { |
| 13 min-height: 0; | 19 min-height: 0; |
| 14 } | 20 } |
| 15 | 21 |
| 16 .bubble.faded { | 22 .bubble.faded { |
| 17 opacity: 0; | 23 opacity: 0; |
| 18 } | 24 } |
| 19 | 25 |
| 20 .pod { | 26 .pod { |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 208 |
| 203 .action-box-remove-user-warning .remove-warning-button:focus { | 209 .action-box-remove-user-warning .remove-warning-button:focus { |
| 204 /* Override the default blue border inherited from | 210 /* Override the default blue border inherited from |
| 205 button.custom-appearance:focus. */ | 211 button.custom-appearance:focus. */ |
| 206 border: 1px solid transparent !important; | 212 border: 1px solid transparent !important; |
| 207 box-shadow: inset 0 0 0 1px #fff; | 213 box-shadow: inset 0 0 0 1px #fff; |
| 208 } | 214 } |
| 209 </style> | 215 </style> |
| 210 </template> | 216 </template> |
| 211 </dom-module> | 217 </dom-module> |
| OLD | NEW |