| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | 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"> | 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"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.
html"> |
| 8 <link rel="import" href="signin_shared_css.html"> | 8 <link rel="import" href="signin_shared_css.html"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 10 <link rel="import" href="chrome://resources/html/cr.html"> | 10 <link rel="import" href="chrome://resources/html/cr.html"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #closeButton { | 25 #closeButton { |
| 26 -webkit-margin-end: 8px; | 26 -webkit-margin-end: 8px; |
| 27 -webkit-margin-start: 0; | 27 -webkit-margin-start: 0; |
| 28 } | 28 } |
| 29 </if> | 29 </if> |
| 30 </style> | 30 </style> |
| 31 </head> | 31 </head> |
| 32 <body> | 32 <body> |
| 33 <div class="container"> | 33 <div class="container"> |
| 34 <div class="top-title-bar">$i18n{signinErrorTitle}</div> | 34 <div class="top-title-bar">$i18n{signinErrorTitle}</div> |
| 35 <div class="details">$i18nRaw{signinErrorMessage}</div> | 35 <div class="details"> |
| 36 <p>$i18nRaw{signinErrorMessage}</p> |
| 37 <a id="learnMoreLink" href="#">$i18nRaw{signinErrorLearnMore}</a> |
| 38 </div> |
| 36 <div class="action-container"> | 39 <div class="action-container"> |
| 37 <paper-button class="primary-action" id="switchButton"> | 40 <paper-button class="primary-action" id="switchButton"> |
| 38 $i18n{signinErrorSwitchLabel} | 41 $i18n{signinErrorSwitchLabel} |
| 39 </paper-button> | 42 </paper-button> |
| 40 <paper-button class="secondary-action" id="closeButton"> | 43 <paper-button class="secondary-action" id="closeButton"> |
| 41 $i18n{signinErrorCloseLabel} | 44 $i18n{signinErrorCloseLabel} |
| 42 </paper-button> | 45 </paper-button> |
| 43 <paper-button class="primary-action" id="confirmButton" hidden> | 46 <paper-button class="primary-action" id="confirmButton" hidden> |
| 44 $i18n{signinErrorOkLabel} | 47 $i18n{signinErrorOkLabel} |
| 45 </paper-button> | 48 </paper-button> |
| 46 </div> | 49 </div> |
| 47 </div> | 50 </div> |
| 48 </body> | 51 </body> |
| 49 <script src="signin_error.js"></script> | 52 <script src="signin_error.js"></script> |
| 50 <script src="chrome://signin-error/strings.js"></script> | 53 <script src="chrome://signin-error/strings.js"></script> |
| 51 </html> | 54 </html> |
| OLD | NEW |