Skip to content

Commit 176ecbf

Browse files
Hide the scroll bar (#468)
1 parent 161c037 commit 176ecbf

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

app/assets/stylesheets/filterable_dashboard.css

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,23 @@
4444
}
4545

4646
.filter .options-list {
47-
max-height: 200px;
47+
/* not 200 cause the search thingie is 35.5 px high */
48+
max-height: 164.5px;
4849
overflow-y: auto;
4950
padding: 0;
5051
margin: 0;
52+
/* Hide the scroll bar for stupid browers that dont follow regular standereds (looking at u microsoft IE) */
53+
-ms-overflow-style: none;
54+
scrollbar-width: none;
55+
}
56+
57+
/* Hide the scroll bar cause it looks terrible (sorry to eho ever made it) */
58+
.filter .options-list::-webkit-scrollbar {
59+
display: none;
5160
}
5261

62+
63+
5364
.filter .option {
5465
display: flex;
5566
align-items: center;
@@ -442,7 +453,7 @@
442453
border-radius: 4px;
443454
margin-top: 4px;
444455
max-height: 200px;
445-
overflow-y: auto;
456+
overflow-y: hidden ;
446457
z-index: 1000;
447458
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
448459
}

0 commit comments

Comments
 (0)