OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <html> |
| 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="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> |
OLD | NEW |