| 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 /* 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 z-index: -1; | 374 z-index: -1; |
| 375 } | 375 } |
| 376 | 376 |
| 377 /* Turns the arrow direction downwards, when the bubble is placed above | 377 /* Turns the arrow direction downwards, when the bubble is placed above |
| 378 * the anchor element */ | 378 * the anchor element */ |
| 379 .search-bubble-innards.above::after { | 379 .search-bubble-innards.above::after { |
| 380 bottom: -5px; | 380 bottom: -5px; |
| 381 top: auto; | 381 top: auto; |
| 382 transform: rotate(-135deg); | 382 transform: rotate(-135deg); |
| 383 } | 383 } |
| 384 |
| 385 .column-header { |
| 386 color: var(--paper-grey-600); |
| 387 font-weight: 500; |
| 388 } |
| 384 </style> | 389 </style> |
| 385 </template> | 390 </template> |
| 386 </dom-module> | 391 </dom-module> |
| OLD | NEW |