Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: chrome/browser/resources/md_user_manager/import_supervised_user.html

Issue 1940923003: MD User Manager: Refactoring CSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-design-change
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_user_manager/import_supervised_user.html
diff --git a/chrome/browser/resources/md_user_manager/import_supervised_user.html b/chrome/browser/resources/md_user_manager/import_supervised_user.html
index 08817f5b1ce2366bcd3f89d3f992472a3ce2e745..4f81bc9f2dac81ddb7e87f81762c8f31b62a6ee9 100644
--- a/chrome/browser/resources/md_user_manager/import_supervised_user.html
+++ b/chrome/browser/resources/md_user_manager/import_supervised_user.html
@@ -28,7 +28,7 @@
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
0 6px 30px 5px rgba(0, 0, 0, 0.12),
0 8px 10px -5px rgba(0, 0, 0, 0.4);
- color: var(--paper-grey-800);
+ color: var(--main-text-color);
width: 512px;
}
@@ -81,29 +81,6 @@
margin-top: 20px;
padding: 16px;
}
-
- #actions paper-button {
- border-radius: 2px;
- font-weight: 500;
- line-height: 36px;
- margin: 0;
- min-width: 52px;
- padding: 0 16px;
- }
-
- #actions #cancel {
- color: var(--paper-grey-600);
- }
-
- #actions #import {
- -webkit-margin-start: 8px;
- background: var(--google-blue-500);
- color: white;
- }
-
- #actions #import[disabled] {
- background: rgba(66, 133, 244, .5);
- }
</style>
<template is="dom-if" if="[[!popupHidden_]]">
<div id="backdrop">
@@ -128,10 +105,12 @@
</iron-selector>
</div>
<div id="actions" class="horizontal end-justified layout">
- <paper-button id="cancel" on-tap="onCancelTap_">
+ <paper-button id="cancel" class="action secondary"
+ on-tap="onCancelTap_">
[[i18n('cancel')]]
</paper-button>
- <paper-button id="import" on-tap="onImportTap_"
+ <paper-button id="import" class="action primary"
+ on-tap="onImportTap_"
disabled="[[isImportDisabled_(supervisedUserIndex_)]]">
[[i18n('supervisedUserImportOk')]]
</paper-button>

Powered by Google App Engine
This is Rietveld 408576698