Updating clear button to be different colors based on theme

This commit is contained in:
CarleyDiaz-Bitwarden 2022-05-05 13:50:05 -04:00
parent 9852f2ec22
commit 75fffeeeb7
1 changed files with 15 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.svg");
-webkit-mask-image: url("../images/close-button.svg");
background-color: themed("headerInputColor");
}
}
}
app-account-switcher {