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

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

Issue 2957943003: MD User manager: Migrate from PaperDialogBehavior to cr-dialog. (Closed)
Patch Set: Restore color. Created 3 years, 5 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 --action-button: { 5 --action-button: {
6 border-radius: 2px; 6 border-radius: 2px;
7 line-height: 20px; 7 line-height: 20px;
8 margin: 0; 8 margin: 0;
9 min-width: 52px; 9 min-width: 52px;
10 padding: 6px 16px; 10 padding: 6px 16px;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 --paper-listbox: { 62 --paper-listbox: {
63 padding: 0; 63 padding: 0;
64 }; 64 };
65 } 65 }
66 66
67 iron-overlay-backdrop { 67 iron-overlay-backdrop {
68 --iron-overlay-backdrop-background-color: white; 68 --iron-overlay-backdrop-background-color: white;
69 --iron-overlay-backdrop-opacity: .8; 69 --iron-overlay-backdrop-opacity: .8;
70 } 70 }
71 71
72 /* TODO(mahmadi): Move this back to user_manager_dialog.html when it does
73 * not break the dialog */
74 user-manager-dialog {
75 --paper-dialog: {
76 font-size: inherit;
77 line-height: initial;
78 };
79 }
80
81 .product-logo { 72 .product-logo {
82 content: -webkit-image-set( 73 content: -webkit-image-set(
83 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_lo go_name_22.png) 1x, 74 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_lo go_name_22.png) 1x,
84 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_lo go_name_22.png) 2x); 75 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_lo go_name_22.png) 2x);
85 height: 22px; 76 height: 22px;
86 } 77 }
87 </style> 78 </style>
88 </template> 79 </template>
89 </dom-module> 80 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698