| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 .favicon-image { | 340 .favicon-image { |
| 341 background-repeat: no-repeat; | 341 background-repeat: no-repeat; |
| 342 background-size: contain; | 342 background-size: contain; |
| 343 height: 16px; | 343 height: 16px; |
| 344 width: 16px; | 344 width: 16px; |
| 345 } | 345 } |
| 346 | 346 |
| 347 .search-bubble { | 347 .search-bubble { |
| 348 pointer-events: none; | 348 pointer-events: none; |
| 349 position: absolute; | 349 position: absolute; |
| 350 z-index: 1; |
| 350 } | 351 } |
| 351 | 352 |
| 352 .search-bubble-innards { | 353 .search-bubble-innards { |
| 353 align-items: center; | 354 align-items: center; |
| 354 background-color: var(--paper-yellow-500); | 355 background-color: var(--paper-yellow-500); |
| 355 border-radius: 2px; | 356 border-radius: 2px; |
| 356 display: flex; | 357 padding: 4px 10px; |
| 357 height: 28px; | 358 text-align: center; |
| 358 padding: 0 16px; | 359 width: 100px; |
| 359 } | 360 } |
| 360 | 361 |
| 361 /* Provides the arrow which points at the anchor element. */ | 362 /* Provides the arrow which points at the anchor element. */ |
| 362 .search-bubble-innards::after { | 363 .search-bubble-innards::after { |
| 363 -webkit-transform: rotate(-45deg); | 364 -webkit-transform: rotate(-45deg); |
| 364 background-color: var(--paper-yellow-500); | 365 background-color: var(--paper-yellow-500); |
| 365 content: ''; | 366 content: ''; |
| 366 height: 10px; | 367 height: 10px; |
| 368 left: 55px; |
| 367 position: absolute; | 369 position: absolute; |
| 368 right: -5px; | 370 top: -5px; |
| 369 top: 10px; | |
| 370 width: 10px; | 371 width: 10px; |
| 371 } | 372 } |
| 372 </style> | 373 </style> |
| 373 </template> | 374 </template> |
| 374 </dom-module> | 375 </dom-module> |
| OLD | NEW |