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> |