diff options
author | lolcat <will@lolcat.ca> | 2023-09-13 09:01:23 -0400 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-09-13 09:01:23 -0400 |
commit | edc42ea35d05b536c2bebfcb78d1bf6007445e85 (patch) | |
tree | 425bef04d71fb8b6585906355a866d1f2f5c321b /static/style.css | |
parent | 71a61304b0072694174af559368a10b69d1e21e4 (diff) |
added autocomplete
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/static/style.css b/static/style.css index ee320a7..ec55624 100644 --- a/static/style.css +++ b/static/style.css @@ -149,31 +149,27 @@ h3,h4,h5,h6{ left:-1px; right:-1px; background:var(--282828); - border:1px solid var(--504945); + border:1px solid var(--928374); border-top:none; border-radius:0 0 2px 2px; z-index:10; + overflow:hidden; } .autocomplete .entry{ overflow:hidden; padding:4px 10px; cursor:pointer; + outline:none; + user-select:none; } .autocomplete .entry:hover{ background:var(--3c3836); } -.autocomplete .title{ - float:left; -} - -.autocomplete .subtext{ - float:right; - font-size:14px; - color:var(--928374); - margin-left:7px; +.autocomplete .entry:focus{ + background:var(--3c3836); } /* Tabs */ |