| Index: chrome/browser/resources/settings/settings_shared_css.html
|
| diff --git a/chrome/browser/resources/settings/settings_shared_css.html b/chrome/browser/resources/settings/settings_shared_css.html
|
| index 2cc33ce5ac0f6a9b511c53678c2e3909f599124b..61a8dbecf535c7af670bb344c910625b2266f80b 100644
|
| --- a/chrome/browser/resources/settings/settings_shared_css.html
|
| +++ b/chrome/browser/resources/settings/settings_shared_css.html
|
| @@ -350,13 +350,13 @@
|
|
|
| /* Provides the arrow which points at the anchor element. */
|
| .search-bubble-innards::after {
|
| - -webkit-transform: rotate(-45deg);
|
| background-color: var(--paper-yellow-500);
|
| content: '';
|
| height: 10px;
|
| left: 55px;
|
| position: absolute;
|
| top: -5px;
|
| + transform: rotate(-45deg);
|
| width: 10px;
|
| z-index: -1;
|
| }
|
| @@ -364,9 +364,9 @@
|
| /* Turns the arrow direction downwards, when the bubble is placed above
|
| * the anchor element */
|
| .search-bubble-innards.above::after {
|
| - -webkit-transform: rotate(-135deg);
|
| bottom: -5px;
|
| top: auto;
|
| + transform: rotate(-135deg);
|
| }
|
| </style>
|
| </template>
|
|
|