| OLD | NEW |
| 1 <!-- Common styles for signin-related tab modal dialogs. --> | 1 <!-- Common styles for signin-related tab modal dialogs. --> |
| 2 <dom-module id="signin-dialog-shared"> | 2 <dom-module id="signin-dialog-shared"> |
| 3 <template> | 3 <template> |
| 4 <style> | 4 <style> |
| 5 a { | 5 a { |
| 6 color: var(--google-blue-700); | 6 color: var(--google-blue-700); |
| 7 text-decoration: none; | 7 text-decoration: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| 11 margin: 0; | 11 margin: 0; |
| 12 padding: 0; | 12 padding: 0; |
| 13 zoom: reset; | |
| 14 } | 13 } |
| 15 | 14 |
| 16 paper-button { | 15 paper-button { |
| 17 font-weight: 500; | 16 font-weight: 500; |
| 18 line-height: 16px; | 17 line-height: 16px; |
| 19 margin: 0; | 18 margin: 0; |
| 20 padding: 8px 16px; | 19 padding: 8px 16px; |
| 21 } | 20 } |
| 22 | 21 |
| 23 paper-button.primary-action { | 22 paper-button.primary-action { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 <if expr="is_macosx or is_linux"> | 65 <if expr="is_macosx or is_linux"> |
| 67 .action-container { | 66 .action-container { |
| 68 flex-flow: row-reverse; | 67 flex-flow: row-reverse; |
| 69 justify-content: flex-start; | 68 justify-content: flex-start; |
| 70 } | 69 } |
| 71 </if> | 70 </if> |
| 72 | 71 |
| 73 </style> | 72 </style> |
| 74 </template> | 73 </template> |
| 75 </dom-module> | 74 </dom-module> |
| OLD | NEW |