Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 2259423002: Settings Search: Make tooltip vertical. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/settings/search_settings.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/search_settings.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698