| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 /* Provides the arrow which points at the anchor element. */ | 424 /* Provides the arrow which points at the anchor element. */ |
| 425 .search-bubble-innards::after { | 425 .search-bubble-innards::after { |
| 426 -webkit-transform: rotate(-45deg); | 426 -webkit-transform: rotate(-45deg); |
| 427 background-color: var(--paper-yellow-500); | 427 background-color: var(--paper-yellow-500); |
| 428 content: ''; | 428 content: ''; |
| 429 height: 10px; | 429 height: 10px; |
| 430 left: 55px; | 430 left: 55px; |
| 431 position: absolute; | 431 position: absolute; |
| 432 top: -5px; | 432 top: -5px; |
| 433 width: 10px; | 433 width: 10px; |
| 434 z-index: -1; |
| 434 } | 435 } |
| 435 | 436 |
| 436 /* Turns the arrow direction downwards, when the bubble is placed above | 437 /* Turns the arrow direction downwards, when the bubble is placed above |
| 437 * the anchor element */ | 438 * the anchor element */ |
| 438 .search-bubble-innards.above::after { | 439 .search-bubble-innards.above::after { |
| 439 -webkit-transform: rotate(-135deg); | 440 -webkit-transform: rotate(-135deg); |
| 440 bottom: -5px; | 441 bottom: -5px; |
| 441 top: auto; | 442 top: auto; |
| 442 } | 443 } |
| 443 </style> | 444 </style> |
| 444 </template> | 445 </template> |
| 445 </dom-module> | 446 </dom-module> |
| OLD | NEW |