| 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 h2 { | 8 h2 { |
| 9 align-items: center; | 9 align-items: center; |
| 10 display: flex; | 10 display: flex; |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 .search-bubble-innards::after { | 362 .search-bubble-innards::after { |
| 363 -webkit-transform: rotate(-45deg); | 363 -webkit-transform: rotate(-45deg); |
| 364 background-color: var(--paper-yellow-500); | 364 background-color: var(--paper-yellow-500); |
| 365 content: ''; | 365 content: ''; |
| 366 height: 10px; | 366 height: 10px; |
| 367 position: absolute; | 367 position: absolute; |
| 368 right: -5px; | 368 right: -5px; |
| 369 top: 10px; | 369 top: 10px; |
| 370 width: 10px; | 370 width: 10px; |
| 371 } | 371 } |
| 372 | |
| 373 .search-highlight-hit { | |
| 374 background-color: var(--paper-yellow-500); | |
| 375 } | |
| 376 </style> | 372 </style> |
| 377 </template> | 373 </template> |
| 378 </dom-module> | 374 </dom-module> |
| OLD | NEW |