Chromium Code Reviews| 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 <style is="custom-style" include="signin-dialog-shared"> | |
| 12 .details { | |
| 13 margin-bottom: 8px; | |
| 14 margin-top: 16px; | |
| 15 padding: 0 24px; | |
| 16 } | |
| 17 | |
| 18 #closeButton { | |
| 19 -webkit-margin-start: 8px; | |
| 20 } | |
| 21 | |
| 22 <if expr="is_macosx or is_linux"> | |
| 23 #closeButton { | |
| 24 -webkit-margin-end: 8px; | |
| 25 -webkit-margin-start: 0; | |
| 26 } | |
| 27 </if> | |
| 28 </style> | |
| 29 </head> | |
| 30 <body> | |
| 31 <div class="container"> | |
| 32 <div class="top-title-bar">$i18n{signinErrorTitle}</div> | |
| 33 <div class="details">$i18nRaw{signinErrorMessage}</div> | |
| 34 <div class="action-container"> | |
| 35 <paper-button class="primary-action" id="switchButton"> | |
|
Dan Beam
2016/09/02 23:21:55
it'd be nice to use on-tap instead of addEventList
| |
| 36 $i18n{signinErrorSwitchLabel} | |
| 37 </paper-button> | |
| 38 <paper-button class="secondary-action" id="closeButton"> | |
| 39 $i18n{signinErrorCloseLabel} | |
| 40 </paper-button> | |
| 41 <paper-button class="primary-action" id="confirmButton" hidden> | |
| 42 $i18n{signinErrorOkLabel} | |
| 43 </paper-button> | |
| 44 </div> | |
| 45 </div> | |
| 46 </body> | |
| 47 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 48 <script src="chrome://resources/js/util.js"></script> | |
|
Dan Beam
2016/09/02 23:21:55
these should also be imports instead of scripts
anthonyvd
2016/09/06 14:36:14
Done.
| |
| 49 <script src="signin_error.js"></script> | |
| 50 <script src="chrome://signin-error/strings.js"></script> | |
| 51 </html> | |
| OLD | NEW |