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

Unified Diff: chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.html

Issue 2943093002: Add internals page for DICE (Closed)
Patch Set: Fix compile error 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.html
diff --git a/chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.html b/chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.html
new file mode 100644
index 0000000000000000000000000000000000000000..54136bcd87ce1c3ffa8b8607a6d018f525659121
--- /dev/null
+++ b/chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.html
@@ -0,0 +1,51 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <link rel="import" href="chrome://resources/html/polymer.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">
+ <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
+ <link rel="import" href="chrome://resources/html/cr.html">
+ <link rel="import" href="chrome://resources/html/util.html">
+ <style is="custom-style">
+ .top-title-bar {
+ align-items: center;
+ border-bottom: 1px solid var(--paper-grey-300);
+ display: flex;
+ font-size: 16px;
+ height: 52px;
+ padding: 0 24px;
+ }
+ .container {
+ background-color: white;
+ color: #333;
+ width: 448px;
+ }
+ .action-container {
+ display: flex;
+ justify-content: flex-start;
+ padding: 16px;
+ }
+ paper-button.primary-action {
+ --paper-button-flat-keyboard-focus: {
+ background: rgb(58, 117, 215);
+ font-weight: 500;
+ };
+ background: var(--google-blue-500);
+ color: white;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="container">
+ <div class="top-title-bar">Desktop Identity Consistency Internals</div>
+ <div class="action-container">
+ <paper-button class="primary-action" id="enableSyncButton">
+ Enable Sync
+ </paper-button>
+ </div>
+ </div>
+ </body>
+ <script src="signin_dice_internals.js"></script>
+</html>
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698