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

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

Issue 2274013002: [Signin Error Dialog] (1/3) Added necessary web components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some comments 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 <style is="custom-style" include="signin-dialog-shared">
11 .details {
12 margin-bottom: 8px;
13 margin-top: 16px;
14 padding: 0 24px;
15 }
16
17 #closeButton {
18 -webkit-margin-start: 8px;
19 }
20
21 #confirmButton {
22 display: none;
23 }
24
25 <if expr="is_macosx or is_linux">
26 #closeButton {
27 -webkit-margin-end: 8px;
28 -webkit-margin-start: 0;
29 }
30 </if>
31 </style>
32 </head>
33 <body>
34 <div class="container">
35 <div class="top-title-bar">$i18n{signinErrorTitle}</div>
36 <div class="details">$i18nRaw{signinErrorMessage}</div>
37 <div class="action-container">
38 <paper-button class="primary-action" id="switchButton">
39 $i18n{signinErrorSwitchLabel}
40 </paper-button>
41 <paper-button class="secondary-action" id="closeButton">
42 $i18n{signinErrorCloseLabel}
43 </paper-button>
44 <paper-button class="primary-action" id="confirmButton">
45 $i18n{signinErrorOkLabel}
46 </paper-button>
47 </div>
48 </div>
49 </body>
50 <script src="chrome://resources/js/cr.js"></script>
Dan Beam 2016/08/30 00:43:08 you should be using <link rel="import" href="chrom
51 <script src="chrome://resources/js/load_time_data.js"></script>
52 <script src="chrome://resources/js/util.js"></script>
53 <script src="signin_error.js"></script>
54 <script src="chrome://signin-error/strings.js"></script>
55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698