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); }