From ee0ed0946849d7d9dbc116f620a6d382404498f8 Mon Sep 17 00:00:00 2001 From: danidfra Date: Thu, 14 Nov 2024 17:27:54 -0300 Subject: [PATCH] Remove "application.scss" --- src/styles/application.scss | 1 - src/styles/components/search.scss | 44 ------------------------------- 2 files changed, 45 deletions(-) delete mode 100644 src/styles/components/search.scss 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; - } -}