diff --git a/src/styles/application.scss b/src/styles/application.scss index d8c066c4a..12a33c00c 100644 --- a/src/styles/application.scss +++ b/src/styles/application.scss @@ -7,5 +7,4 @@ // COMPONENTS @use 'components/compose-form'; @use 'components/status'; -@use 'components/search'; @use 'components/icon'; diff --git a/src/styles/components/search.scss b/src/styles/components/search.scss deleted file mode 100644 index 64e6bcfd6..000000000 --- a/src/styles/components/search.scss +++ /dev/null @@ -1,44 +0,0 @@ -.search { - position: relative; -} - -.search__icon { - &::-moz-focus-inner { - border: 0; - } - - &::-moz-focus-inner, - &:focus { - outline: 0 !important; - } - - .svg-icon { - @apply right-4 rtl:left-4 rtl:right-auto text-gray-400; - font-size: 16px; - cursor: default; - display: inline-block; - position: absolute; - top: 50%; - transform: translateY(-50%); - z-index: 2; - width: 18px; - height: 18px; - opacity: 0; - pointer-events: none; - - &.active { - pointer-events: auto; - opacity: 1; - } - } - - .svg-icon--search.active { - pointer-events: none; - } - - .svg-icon--backspace { - cursor: pointer; - width: 22px; - height: 22px; - } -}