| Index: chrome/browser/resources/md_user_manager/supervised_user_create_confirm.html
|
| diff --git a/chrome/browser/resources/md_user_manager/supervised_user_create_confirm.html b/chrome/browser/resources/md_user_manager/supervised_user_create_confirm.html
|
| index 72e4d090443708f048049fb301bd1f2122ed3e41..ec400b65749d82d99233d10d808c6f6096609ddf 100644
|
| --- a/chrome/browser/resources/md_user_manager/supervised_user_create_confirm.html
|
| +++ b/chrome/browser/resources/md_user_manager/supervised_user_create_confirm.html
|
| @@ -15,7 +15,7 @@
|
| }
|
|
|
| #container {
|
| - color: var(--paper-grey-800);
|
| + color: var(--main-text-color);
|
| line-height: 20px;
|
| width: 624px;
|
| }
|
| @@ -29,7 +29,7 @@
|
| #title-area iron-icon {
|
| --iron-icon-height: 20px;
|
| --iron-icon-width: 20px;
|
| - color: var(--google-grey-500);
|
| + color: var(--title-icon-color);
|
| }
|
|
|
| .content-area {
|
| @@ -65,25 +65,6 @@
|
| left: 16px;
|
| right: auto;
|
| }
|
| -
|
| - #actions paper-button {
|
| - border-radius: 2px;
|
| - font-weight: 500;
|
| - line-height: 32px;
|
| - margin: 0;
|
| - min-width: 52px;
|
| - padding: 0 16px;
|
| - }
|
| -
|
| - #actions #ok {
|
| - color: var(--paper-grey-600);
|
| - }
|
| -
|
| - #actions #switchUser {
|
| - -webkit-margin-start: 8px;
|
| - background: var(--google-blue-500);
|
| - color: white;
|
| - }
|
| </style>
|
| <div id="container">
|
| <div id="title-area" class="horizontal justified layout">
|
| @@ -95,16 +76,17 @@
|
| </div>
|
| <div id="childlock-button-example">
|
| <iron-icon icon="lock"></iron-icon>
|
| - <span i18n-content="exitAndChildlockLabel"></span>
|
| + <span>$i18n{exitAndChildlockLabel}</span>
|
| </div>
|
| <div class="content" inner-h-t-m-l="[[htmlMessage2_(profileInfo)]]">
|
| </div>
|
| </div>
|
| <div id="actions">
|
| - <paper-button id="ok" on-tap="onOkTap_"
|
| - i18n-content="supervisedUserCreatedDone">
|
| + <paper-button id="ok" class="action secondary" on-tap="onOkTap_">
|
| + $i18n{supervisedUserCreatedDone}
|
| </paper-button>
|
| - <paper-button id="switchUser" on-tap="onSwitchUserTap_">
|
| + <paper-button id="switchUser" class="action primary"
|
| + on-tap="onSwitchUserTap_">
|
| [[switchUserText_(profileInfo)]]
|
| </paper-button>
|
| </div>
|
|
|