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

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

Issue 2053723002: MD User Manager: Overhaul Urls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-dialogs
Patch Set: Changed Urls for html resources to root-relative Urls 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 --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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 paper-listbox { 61 paper-listbox {
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
72 .product-logo {
73 content: -webkit-image-set(
74 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_lo go_name_22.png) 1x,
75 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_lo go_name_22.png) 2x);
76 height: 22px;
77 }
71 </style> 78 </style>
72 </template> 79 </template>
73 </dom-module> 80 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698