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

Side by Side Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 2161743002: MD Settings: Fix paper/iron dropdown alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
2 <link rel="import" href="/settings_root_css.html"> 2 <link rel="import" href="/settings_root_css.html">
3 3
4 <!-- Common styles for Material Design settings. --> 4 <!-- Common styles for Material Design settings. -->
5 <dom-module id="settings-shared"> 5 <dom-module id="settings-shared">
6 <template> 6 <template>
7 <style include="cr-shared-style"> 7 <style include="cr-shared-style">
8 h2 { 8 h2 {
9 align-items: center; 9 align-items: center;
10 display: flex; 10 display: flex;
(...skipping 23 matching lines...) Expand all
34 paper-dropdown-menu { 34 paper-dropdown-menu {
35 --iron-icon-fill-color: var(--paper-grey-600); 35 --iron-icon-fill-color: var(--paper-grey-600);
36 --paper-font-subhead: { 36 --paper-font-subhead: {
37 font-size: inherit; 37 font-size: inherit;
38 }; 38 };
39 --paper-input-container-underline: { 39 --paper-input-container-underline: {
40 background: var(--paper-grey-300); 40 background: var(--paper-grey-300);
41 }; 41 };
42 } 42 }
43 43
44 paper-dropdown-menu paper-listbox {
45 padding: 0;
46 }
47
44 paper-dropdown-menu .dropdown-item { 48 paper-dropdown-menu .dropdown-item {
45 align-items: center; 49 align-items: center;
46 background: none; 50 background: none;
47 border: none; 51 border: none;
48 color: var(--paper-grey-800); 52 color: var(--paper-grey-800);
49 display: flex; 53 display: flex;
50 font: inherit; 54 font: inherit;
51 min-height: 48px; 55 min-height: 48px;
52 padding: 0 16px; 56 padding: 0 16px;
53 width: 100%; 57 width: 100%;
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 345
342 .favicon-image { 346 .favicon-image {
343 background-repeat: no-repeat; 347 background-repeat: no-repeat;
344 background-size: contain; 348 background-size: contain;
345 height: 16px; 349 height: 16px;
346 width: 16px; 350 width: 16px;
347 } 351 }
348 </style> 352 </style>
349 </template> 353 </template>
350 </dom-module> 354 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698