Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!-- Common styles for signin-related tab modal dialogs. --> | |
| 2 <dom-module id="signin-dialog-shared"> | |
| 3 <template> | |
| 4 <style> | |
| 5 a { | |
| 6 color: var(--google-blue-700); | |
| 7 text-decoration: none; | |
| 8 } | |
| 9 | |
| 10 body { | |
| 11 margin: 0; | |
| 12 padding: 0; | |
| 13 } | |
| 14 | |
| 15 paper-button { | |
| 16 font-weight: 500; | |
| 17 line-height: 16px; | |
| 18 margin: 0; | |
| 19 padding: 8px 16px; | |
| 20 } | |
| 21 | |
| 22 paper-button.primary-action { | |
| 23 background: var(--google-blue-500); | |
| 24 color: white; | |
| 25 --paper-button-flat-keyboard-focus: { | |
|
Dan Beam
2016/09/02 23:21:55
nit: move to top
anthonyvd
2016/09/06 14:36:14
Done.
| |
| 26 background: rgb(58, 117, 215); | |
| 27 }; | |
| 28 } | |
| 29 | |
| 30 paper-button.secondary-action { | |
| 31 color: var(--paper-grey-600); | |
| 32 --paper-button-flat-keyboard-focus: { | |
| 33 background: rgba(0, 0, 0, .12); | |
| 34 }; | |
| 35 } | |
| 36 | |
| 37 .container { | |
| 38 background-color: white; | |
| 39 color: #333; | |
| 40 overflow: hidden; | |
| 41 width: 448px; | |
| 42 } | |
| 43 | |
| 44 .top-title-bar { | |
| 45 align-items: center; | |
| 46 border-bottom: 1px solid var(--paper-grey-300); | |
| 47 display: flex; | |
| 48 font-size: 16px; | |
| 49 height: 52px; | |
| 50 padding: 0 24px; | |
| 51 } | |
| 52 | |
| 53 .action-container { | |
| 54 display: flex; | |
| 55 justify-content: flex-end; | |
| 56 padding: 16px; | |
| 57 } | |
| 58 | |
| 59 <if expr="is_macosx or is_linux"> | |
| 60 .action-container { | |
| 61 flex-flow: row-reverse; | |
| 62 justify-content: flex-start; | |
| 63 } | |
| 64 </if> | |
| 65 | |
| 66 </style> | |
| 67 </template> | |
| 68 </dom-module> | |
| OLD | NEW |