Skip to content

Commit

Permalink
Fix result text cutoff in Firefox
Browse files Browse the repository at this point in the history
Fixes #65
  • Loading branch information
DominikDoom committed Nov 6, 2022
1 parent 535c2a6 commit ca8a0c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/tagAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ let autocompleteCSS_dark = `
border: 1px solid #4b5563 !important;
border-radius: 12px !important;
overflow-y: auto;
scrollbar-gutter: stable;
}
.autocompleteResultsList > li:nth-child(odd) {
background-color: #111827;
Expand All @@ -33,7 +34,6 @@ let autocompleteCSS_dark = `
.acListItem {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.acPostCount {
position: relative;
Expand All @@ -52,6 +52,7 @@ let autocompleteCSS_light = `
border: 1.5px solid #e5e7eb !important;
border-radius: 12px !important;
overflow-y: auto;
scrollbar-gutter: stable;
}
.autocompleteResultsList > li:nth-child(odd) {
background-color: #f9fafb;
Expand All @@ -73,7 +74,6 @@ let autocompleteCSS_light = `
.acListItem {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.acPostCount {
position: relative;
Expand Down

0 comments on commit ca8a0c4

Please sign in to comment.