From 176ecbf85bd221a2d6417d0c654f7ef1332f1c7d Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Sun, 10 Aug 2025 15:20:57 -0400 Subject: [PATCH] Hide the scroll bar (#468) --- app/assets/stylesheets/filterable_dashboard.css | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/filterable_dashboard.css b/app/assets/stylesheets/filterable_dashboard.css index bb1ebab..f96c555 100644 --- a/app/assets/stylesheets/filterable_dashboard.css +++ b/app/assets/stylesheets/filterable_dashboard.css @@ -44,12 +44,23 @@ } .filter .options-list { - max-height: 200px; + /* not 200 cause the search thingie is 35.5 px high */ + max-height: 164.5px; overflow-y: auto; padding: 0; margin: 0; + /* Hide the scroll bar for stupid browers that dont follow regular standereds (looking at u microsoft IE) */ + -ms-overflow-style: none; + scrollbar-width: none; } +/* Hide the scroll bar cause it looks terrible (sorry to eho ever made it) */ +.filter .options-list::-webkit-scrollbar { + display: none; +} + + + .filter .option { display: flex; align-items: center; @@ -442,7 +453,7 @@ border-radius: 4px; margin-top: 4px; max-height: 200px; - overflow-y: auto; + overflow-y: hidden ; z-index: 1000; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }