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

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

Issue 2656563006: MD Settings: Fix several global UI polish bugs. (Closed)
Patch Set: minor height adjustments Created 3 years, 10 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_vars_css.html"> 2 <link rel="import" href="/settings_vars_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 /* Included here so we don't have to include "iron-positioning" in every 8 /* Included here so we don't have to include "iron-positioning" in every
9 * stylesheet. See crbug.com/498405. */ 9 * stylesheet. See crbug.com/498405. */
10 [hidden] { 10 [hidden] {
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 34
35 iron-icon[icon='cr:check'], 35 iron-icon[icon='cr:check'],
36 iron-icon[icon='settings:done'] { 36 iron-icon[icon='settings:done'] {
37 --iron-icon-fill-color: var(--google-green-500); 37 --iron-icon-fill-color: var(--google-green-500);
38 } 38 }
39 39
40 paper-button { 40 paper-button {
41 height: 32px; 41 height: 32px;
42 margin: 0; 42 margin: 0;
43 border-radius: 4px;
43 } 44 }
44 45
45 paper-button[toggles][active] { 46 paper-button[toggles][active] {
46 background-color: var(--paper-grey-300); 47 background-color: var(--paper-grey-300);
47 } 48 }
48 49
49 paper-toggle-button { 50 paper-toggle-button {
50 @apply(--settings-actionable); 51 @apply(--settings-actionable);
51 height: var(--settings-row-min-height); 52 height: var(--settings-row-min-height);
52 width: 31px; 53 width: 31px;
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 /* Turns the arrow direction downwards, when the bubble is placed above 384 /* Turns the arrow direction downwards, when the bubble is placed above
384 * the anchor element */ 385 * the anchor element */
385 .search-bubble-innards.above::after { 386 .search-bubble-innards.above::after {
386 -webkit-transform: rotate(-135deg); 387 -webkit-transform: rotate(-135deg);
387 bottom: -5px; 388 bottom: -5px;
388 top: auto; 389 top: auto;
389 } 390 }
390 </style> 391 </style>
391 </template> 392 </template>
392 </dom-module> 393 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698