| Index: chrome/browser/resources/settings/people_page/users_page.html
|
| diff --git a/chrome/browser/resources/settings/people_page/users_page.html b/chrome/browser/resources/settings/people_page/users_page.html
|
| index f0ddb526fb5d8a057a85160d79578208d78f8aca..a917b88193df356ffaf9a3ea5400e90b5a36f6fe 100644
|
| --- a/chrome/browser/resources/settings/people_page/users_page.html
|
| +++ b/chrome/browser/resources/settings/people_page/users_page.html
|
| @@ -1,3 +1,6 @@
|
| +<link rel="import" href="chrome://resources/html/action_link.html">
|
| +<!-- "action_link_css.html" replaces "action_link.css" for MD pages. -->
|
| +<link rel="import" href="chrome://resources/html/action_link_css.html">
|
| <link rel="import" href="chrome://resources/html/polymer.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
|
| @@ -8,7 +11,7 @@
|
|
|
| <dom-module id="settings-users-page">
|
| <template>
|
| - <style include="settings-shared">
|
| + <style include="settings-shared action-link">
|
| .users {
|
| /* The users box must line up with the checkbox text. */
|
| -webkit-margin-start: var(--settings-indent-width);
|
| @@ -59,11 +62,12 @@
|
| disabled="[[isEditingUsersDisabled_(isOwner_, isWhitelistManaged_,
|
| prefs.cros.accounts.allowGuest.value)]]">
|
| </settings-user-list>
|
| - <div id="add-user-button" class="list-item list-button"
|
| - on-tap="openAddUserDialog_"
|
| + <div id="add-user-button" class="list-item"
|
| hidden="[[isEditingUsersDisabled_(isOwner_, isWhitelistManaged_,
|
| prefs.cros.accounts.allowGuest.value)]]">
|
| - $i18n{addUsers}
|
| + <a is="action-link" class="list-button" on-tap="openAddUserDialog_">
|
| + $i18n{addUsers}
|
| + </a>
|
| </div>
|
| </div>
|
| </div>
|
|
|