| 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="import" href="signin_shared_css.html"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 10 <link rel="import" href="chrome://resources/html/cr.html"> |
| 11 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| 12 <link rel="import" href="chrome://resources/html/util.html"> |
| 13 <style is="custom-style" include="signin-dialog-shared"> |
| 14 .details { |
| 15 margin-bottom: 8px; |
| 16 margin-top: 16px; |
| 17 padding: 0 24px; |
| 18 } |
| 19 |
| 20 #closeButton { |
| 21 -webkit-margin-start: 8px; |
| 22 } |
| 23 |
| 24 <if expr="is_macosx or is_linux"> |
| 25 #closeButton { |
| 26 -webkit-margin-end: 8px; |
| 27 -webkit-margin-start: 0; |
| 28 } |
| 29 </if> |
| 30 </style> |
| 31 </head> |
| 32 <body> |
| 33 <div class="container"> |
| 34 <div class="top-title-bar">$i18n{signinErrorTitle}</div> |
| 35 <div class="details">$i18nRaw{signinErrorMessage}</div> |
| 36 <div class="action-container"> |
| 37 <paper-button class="primary-action" id="switchButton"> |
| 38 $i18n{signinErrorSwitchLabel} |
| 39 </paper-button> |
| 40 <paper-button class="secondary-action" id="closeButton"> |
| 41 $i18n{signinErrorCloseLabel} |
| 42 </paper-button> |
| 43 <paper-button class="primary-action" id="confirmButton" hidden> |
| 44 $i18n{signinErrorOkLabel} |
| 45 </paper-button> |
| 46 </div> |
| 47 </div> |
| 48 </body> |
| 49 <script src="signin_error.js"></script> |
| 50 <script src="chrome://signin-error/strings.js"></script> |
| 51 </html> |
| OLD | NEW |