Chromium Code Reviews| 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..76ef2a2213d6bc817cc337d9ad5ea7e9070737ca |
| --- /dev/null |
| +++ b/chrome/browser/resources/signin/signin_dice_internals/signin_dice_internals.html |
| @@ -0,0 +1,51 @@ |
| +<!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
|
| +<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.
|
| + <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
|
| + <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> |