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

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

Issue 2007743004: MD User Manager: Fixes remove profile button for languages with long texts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 7 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
« no previous file with comments | « chrome/browser/resources/md_user_manager/shared_styles.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> 1 <link rel="import" href="chrome://md-user-manager/shared_styles.html">
2 2
3 <dom-module id="user-manager-styles"> 3 <dom-module id="user-manager-styles">
4 <template> 4 <template>
5 <style include="shared-styles"> 5 <style include="shared-styles">
6 body { 6 body {
7 background-color: var(--paper-grey-200); 7 background-color: var(--paper-grey-200);
8 } 8 }
9 9
10 user-manager-pages, 10 user-manager-pages,
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 color: var(--paper-grey-600); 230 color: var(--paper-grey-600);
231 } 231 }
232 232
233 .action-box-menu-remove { 233 .action-box-menu-remove {
234 border-top: 1px solid rgba(0, 0, 0, .12); 234 border-top: 1px solid rgba(0, 0, 0, .12);
235 line-height: 32px; 235 line-height: 32px;
236 padding: 8px 12px; 236 padding: 8px 12px;
237 } 237 }
238 238
239 .action-box-remove-user-warning { 239 .action-box-remove-user-warning {
240 align-items: center;
240 border-top: 1px solid rgba(0, 0, 0, .12); 241 border-top: 1px solid rgba(0, 0, 0, .12);
242 display: flex;
243 flex-direction: column;
241 font-size: inherit; 244 font-size: inherit;
242 line-height: 20px; 245 line-height: 20px;
243 padding: 12px; 246 padding: 12px;
244 text-align: center;
245 } 247 }
246 248
247 .action-box-remove-user-warning > * { 249 .action-box-remove-user-warning > * {
248 text-align: initial;
249 word-wrap: break-word; 250 word-wrap: break-word;
250 } 251 }
251 252
252 .total-count, 253 .total-count,
253 .pod:not(.synced) .action-box-remove-user-warning-text { 254 .pod:not(.synced) .action-box-remove-user-warning-text {
254 font-weight: 500; 255 font-weight: 500;
255 } 256 }
256 257
257 .action-box-remove-user-warning .remove-warning-button { 258 .action-box-remove-user-warning .remove-warning-button {
258 --paper-button: { 259 --paper-button: {
259 background: var(--google-red-700); 260 background: var(--google-red-700);
260 color: white; 261 color: white;
261 font-weight: 500; 262 font-weight: 500;
262 }; 263 };
263 --paper-button-flat-keyboard-focus: { 264 --paper-button-flat-keyboard-focus: {
264 background: rgb(173, 50, 36); 265 background: rgb(173, 50, 36);
265 font-weight: 500; 266 font-weight: 500;
266 }; 267 };
267 border-radius: 2px; 268 @apply(--action-button);
268 line-height: 32px;
269 min-width: 72px;
270 padding: 0 16px;
271 } 269 }
272 </style> 270 </style>
273 </template> 271 </template>
274 </dom-module> 272 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_user_manager/shared_styles.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698