diff --git a/apps/desktop/src/images/close-button-white.svg b/apps/desktop/src/images/close-button-white.svg new file mode 100644 index 000000000000..8aea34647802 --- /dev/null +++ b/apps/desktop/src/images/close-button-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/desktop/src/scss/header.scss b/apps/desktop/src/scss/header.scss index 0133dc6cc63b..fdeba451c243 100644 --- a/apps/desktop/src/scss/header.scss +++ b/apps/desktop/src/scss/header.scss @@ -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 {