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

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

Issue 2495373004: MD Settings: Fix Search tooltip arrow obscuring letters (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | 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 /* 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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698