1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[PS-124] Update so the image for the clear search button is visible in all themes (#2639)

* Update so the image for the clear search button is visible in all themes

* Whitespace updates

* changes from master

* Revert "changes from master"

This reverts commit 33ccee3d9181b9442000a22dfc17d1422a4948d9.

* fixing linting issue with header.scss
This commit is contained in:
CarleyDiaz-Bitwarden
2022-05-16 17:09:54 -04:00
committed by GitHub
parent 076b0cbf1f
commit f66129e076
2 changed files with 16 additions and 4 deletions

View File

@@ -12,11 +12,22 @@
@include themify($themes) {
background-color: themed("headerBackgroundColor");
border-bottom-color: themed("headerBorderColor");
}
app-search {
grid-column-start: 2;
width: 100%;
app-search {
grid-column-start: 2;
width: 100%;
[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none;
height: 15px;
width: 15px;
background-repeat: no-repeat;
mask-image: url("../images/close-button-white.svg");
-webkit-mask-image: url("../images/close-button-white.svg");
background-color: themed("headerInputColor");
}
}
}
app-account-switcher {