Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: chrome/browser/resources/signin/signin_error/signin_error.html

Issue 2298503002: [Signin Error Dialog] (1/3) Adds necessary web components (Closed)
Patch Set: Address feedback. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/signin/signin_error/signin_error.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698