| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-
button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.
html"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 9 <link rel="stylesheet" href="signin_error.css"></link> |
| 10 <style is="custom-style"> |
| 11 a { |
| 12 color: var(--google-blue-700); |
| 13 text-decoration: none; |
| 14 white-space: pre-line; |
| 15 } |
| 16 |
| 17 paper-button.primary-action { |
| 18 background: var(--google-blue-500); |
| 19 color: white; |
| 20 font-weight: 500; |
| 21 --paper-button-flat-keyboard-focus: { |
| 22 background: rgb(58, 117, 215); |
| 23 }; |
| 24 } |
| 25 |
| 26 paper-button.secondary-action { |
| 27 color: var(--google-blue-500); |
| 28 font-weight: 500; |
| 29 --paper-button-flat-keyboard-focus: { |
| 30 background: rgba(0, 0, 0, .12); |
| 31 }; |
| 32 } |
| 33 |
| 34 <if expr="is_macosx or is_linux"> |
| 35 .action-container { |
| 36 flex-flow: row-reverse; |
| 37 justify-content: flex-start; |
| 38 } |
| 39 </if> |
| 40 </style> |
| 41 </head> |
| 42 <body> |
| 43 <div class="container"> |
| 44 <div class="top-title-bar">$i18n{signinErrorTitle}</div> |
| 45 <div class="details" i18n-values=".innerHTML:signinErrorMessage"></div> |
| 46 <div class="action-container"> |
| 47 <paper-button class="primary-action" id="switchButton"> |
| 48 $i18n{signinErrorSwitchLabel} |
| 49 </paper-button> |
| 50 <paper-button class="secondary-action" id="secondaryConfirmButton"> |
| 51 $i18n{signinErrorOkLabel} |
| 52 </paper-button> |
| 53 <paper-button class="primary-action" id="primaryConfirmButton"> |
| 54 $i18n{signinErrorOkLabel} |
| 55 </paper-button> |
| 56 </div> |
| 57 </div> |
| 58 </body> |
| 59 <script src="chrome://resources/js/cr.js"></script> |
| 60 <script src="chrome://resources/js/load_time_data.js"></script> |
| 61 <script src="chrome://resources/js/util.js"></script> |
| 62 <script src="signin_error.js"></script> |
| 63 <script src="chrome://signin-error/strings.js"></script> |
| 64 <script src="chrome://resources/js/i18n_template.js"></script> |
| 65 </html> |
| OLD | NEW |