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

Side by Side Diff: chrome/browser/resources/md_user_manager/shared_styles.html

Issue 2024233003: MD User Manager: Refactors existing dialogs in User Manager into <user-manager-dialog> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-test
Patch Set: Removed user_manager_dialog gyp target Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 <dom-module id="shared-styles"> 1 <dom-module id="shared-styles">
2 <template> 2 <template>
3 <style> 3 <style>
4 :root { 4 :root {
5 --error-color: var(--google-red-700);
6 --page-width: 624px;
7 --primary-text-color: var(--paper-grey-800);
8 --title-icon-color: var(--paper-grey-500);
9 --action-button: { 5 --action-button: {
10 border-radius: 2px; 6 border-radius: 2px;
11 line-height: 20px; 7 line-height: 20px;
12 margin: 0; 8 margin: 0;
13 min-width: 52px; 9 min-width: 52px;
14 padding: 6px 16px; 10 padding: 6px 16px;
15 }; 11 };
12 --error-color: var(--google-red-700);
13 --page-width: 624px;
14 --primary-text-color: var(--paper-grey-800);
15 --title-icon-color: var(--paper-grey-500);
16 --user-manager-separator-line: 1px solid rgba(0, 0, 0, .12);
16 } 17 }
17 18
18 a, 19 a,
19 a:active, 20 a:active,
20 a:hover, 21 a:hover,
21 a:visited { 22 a:visited {
22 color: var(--google-blue-700); 23 color: var(--google-blue-700);
23 cursor: pointer; 24 cursor: pointer;
24 text-decoration: none; 25 text-decoration: none;
25 } 26 }
(...skipping 29 matching lines...) Expand all
55 56
56 paper-button.action + paper-button.action { 57 paper-button.action + paper-button.action {
57 -webkit-margin-start: 8px; 58 -webkit-margin-start: 8px;
58 } 59 }
59 60
60 paper-listbox { 61 paper-listbox {
61 --paper-listbox: { 62 --paper-listbox: {
62 padding: 0; 63 padding: 0;
63 }; 64 };
64 } 65 }
66
67 iron-overlay-backdrop {
68 --iron-overlay-backdrop-background-color: white;
69 --iron-overlay-backdrop-opacity: .8;
70 }
65 </style> 71 </style>
66 </template> 72 </template>
67 </dom-module> 73 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698