| 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 { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 | 32 |
| 33 paper-button.secondary-action { | 33 paper-button.secondary-action { |
| 34 --paper-button-flat-keyboard-focus: { | 34 --paper-button-flat-keyboard-focus: { |
| 35 background: rgba(0, 0, 0, .12); | 35 background: rgba(0, 0, 0, .12); |
| 36 }; | 36 }; |
| 37 color: var(--paper-grey-600); | 37 color: var(--paper-grey-600); |
| 38 } | 38 } |
| 39 | 39 |
| 40 paper-radio-button { | 40 paper-radio-button { |
| 41 color: #333; | 41 --paper-radio-button-checked-color: var(--google-blue-500); |
| 42 --paper-radio-button-ink-size: 40px; |
| 43 --paper-radio-button-label-spacing: 16px; |
| 42 } | 44 } |
| 43 | 45 |
| 44 .container { | 46 .container { |
| 45 background-color: white; | 47 background-color: white; |
| 46 color: #333; | 48 color: #333; |
| 47 /* Scrollbars are hidden as the sign-in dialogs are automatically | 49 /* Scrollbars are hidden as the sign-in dialogs are automatically |
| 48 resized.*/ | 50 resized.*/ |
| 49 overflow: hidden; | 51 overflow: hidden; |
| 50 width: 448px; | 52 width: 448px; |
| 51 } | 53 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 68 <if expr="is_macosx or is_linux"> | 70 <if expr="is_macosx or is_linux"> |
| 69 .action-container { | 71 .action-container { |
| 70 flex-flow: row-reverse; | 72 flex-flow: row-reverse; |
| 71 justify-content: flex-start; | 73 justify-content: flex-start; |
| 72 } | 74 } |
| 73 </if> | 75 </if> |
| 74 | 76 |
| 75 </style> | 77 </style> |
| 76 </template> | 78 </template> |
| 77 </dom-module> | 79 </dom-module> |
| OLD | NEW |