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

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

Issue 2943093002: Add internals page for DICE (Closed)
Patch Set: Fix compile on Android and ChromeOS Created 3 years, 6 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>
Bernhard Bauer 2017/06/16 14:16:08 Doesn't this also need a copyright header?
msarda 2017/06/20 10:16:43 The other HTML files in chrome/browser/resources/s
2 <html i18n-values="dir:textdirection;lang:language">
Bernhard Bauer 2017/06/16 14:16:08 This page isn't localized, right? Then you can rem
msarda 2017/06/20 10:16:43 Done.
3 <head>
Bernhard Bauer 2017/06/16 14:16:08 Usually we just skip the indentation for <head> an
msarda 2017/06/20 10:16:43 The other files in chrome/browser/resources/signin
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="stylesheet" href="chrome://resources/css/text_defaults_md.css">
9 <link rel="import" href="chrome://resources/html/cr.html">
10 <link rel="import" href="chrome://resources/html/util.html">
11 <style is="custom-style">
12 .top-title-bar {
13 align-items: center;
14 border-bottom: 1px solid var(--paper-grey-300);
15 display: flex;
16 font-size: 16px;
17 height: 52px;
18 padding: 0 24px;
19 }
20 .container {
21 background-color: white;
22 color: #333;
23 width: 448px;
24 }
25 .action-container {
26 display: flex;
27 justify-content: flex-start;
28 padding: 16px;
29 }
30 paper-button.primary-action {
31 --paper-button-flat-keyboard-focus: {
32 background: rgb(58, 117, 215);
33 font-weight: 500;
34 };
35 background: var(--google-blue-500);
36 color: white;
37 }
38 </style>
39 </head>
40 <body>
41 <div class="container">
42 <div class="top-title-bar">Desktop Identity Consistency Internals</div>
43 <div class="action-container">
44 <paper-button class="primary-action" id="enableSyncButton">
45 Enable Sync
46 </paper-button>
47 </div>
48 </div>
49 </body>
50 <script src="signin_dice_internals.js"></script>
51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698