Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 /* Use <h2> as the "sub-header" mentioned in the UX design docs. */ | 8 /* Use <h2> as the "sub-header" mentioned in the UX design docs. */ |
| 9 h2 { | 9 h2 { |
| 10 align-items: center; | 10 align-items: center; |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 margin: 0; | 27 margin: 0; |
| 28 } | 28 } |
| 29 | 29 |
| 30 paper-button[toggles][active] { | 30 paper-button[toggles][active] { |
| 31 background-color: var(--paper-grey-300); | 31 background-color: var(--paper-grey-300); |
| 32 } | 32 } |
| 33 | 33 |
| 34 paper-toggle-button { | 34 paper-toggle-button { |
| 35 @apply(--settings-actionable); | 35 @apply(--settings-actionable); |
| 36 height: 20px; | 36 height: 20px; |
| 37 width: 34px; | 37 width: 31px; |
|
tommycli
2016/09/16 23:32:11
What was this change for?
dschuyler
2016/09/16 23:35:43
It's to make the bounding box slim enough
that the
| |
| 38 } | 38 } |
| 39 | 39 |
| 40 paper-dropdown-menu-light { | 40 paper-dropdown-menu-light { |
| 41 --iron-icon-fill-color: var(--paper-grey-600); | 41 --iron-icon-fill-color: var(--paper-grey-600); |
| 42 --paper-font-subhead: { | 42 --paper-font-subhead: { |
| 43 font-size: inherit; | 43 font-size: inherit; |
| 44 }; | 44 }; |
| 45 --paper-dropdown-menu-input: { | 45 --paper-dropdown-menu-input: { |
| 46 border-bottom-color: var(--paper-grey-300); | 46 border-bottom-color: var(--paper-grey-300); |
| 47 }; | 47 }; |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 386 /* Turns the arrow direction downwards, when the bubble is placed above | 386 /* Turns the arrow direction downwards, when the bubble is placed above |
| 387 * the anchor element */ | 387 * the anchor element */ |
| 388 .search-bubble-innards.above::after { | 388 .search-bubble-innards.above::after { |
| 389 -webkit-transform: rotate(-135deg); | 389 -webkit-transform: rotate(-135deg); |
| 390 bottom: -5px; | 390 bottom: -5px; |
| 391 top: auto; | 391 top: auto; |
| 392 } | 392 } |
| 393 </style> | 393 </style> |
| 394 </template> | 394 </template> |
| 395 </dom-module> | 395 </dom-module> |
| OLD | NEW |