aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/stylesheets
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2024-07-08 15:50:03 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2024-07-08 16:24:10 +0200
commit58ec440501ee821931706fd12dbd9331b0eaca50 (patch)
tree26fbd06d9f3775b16a5f01b549b22a97a454258c /resources/assets/stylesheets
parent471197f7abc27b0fdc65e453587a74906922f9d5 (diff)
convert oersearch to sfc, re #4302tic-4302
Diffstat (limited to 'resources/assets/stylesheets')
-rw-r--r--resources/assets/stylesheets/scss/quicksearch.scss44
1 files changed, 0 insertions, 44 deletions
diff --git a/resources/assets/stylesheets/scss/quicksearch.scss b/resources/assets/stylesheets/scss/quicksearch.scss
index ef6c372..6687450 100644
--- a/resources/assets/stylesheets/scss/quicksearch.scss
+++ b/resources/assets/stylesheets/scss/quicksearch.scss
@@ -89,47 +89,3 @@ div.quicksearch_frame {
background-position: center center;
}
}
-
-.quicksearch_container {
- display: inline-flex;
- flex-direction: row-reverse;
- width: 100%;
-
- .dropdownmenu {
- max-width: 0;
- max-height: 0;
- overflow: visible;
- position: relative;
- top: 31px;
- z-index: 99999;
-
- .autocomplete__results {
- list-style-type: none;
- padding: 1px;
- border: 1px solid var(--light-gray-color-40);
- background-color: var(--white);
- max-height: 275px;
- width: 600px;
- overflow-x: auto;
- overflow-y: hidden;
-
- > li {
- padding: 5px;
- cursor: pointer;
- display: flex;
- align-items: flex-start;
-
- &:hover, &.autocomplete__result--selected {
- background-color: var(--base-color);
- color: var(--white);
- }
-
- img {
- max-width: 40px;
- max-height: 40px;
- margin-right: 5px;
- }
- }
- }
- }
-}