]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-forms/advanced-input-filter.component.scss
Fix video channels quick filter overflow
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / advanced-input-filter.component.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 .dropdown-item {
5 font-size: 14px;
6 }
7
8 input {
9 @include peertube-input-text(250px);
10 }
11
12 .input-group-text {
13 background-color: transparent;
14 }
15
16 my-global-icon {
17 $size: 18px;
18 $margin: 2px;
19
20 @include margin-right($margin);
21
22 opacity: 1;
23 width: 18px;
24 height: 18px;
25
26 &.no-visible {
27 @include margin-right($size + $margin);
28
29 width: 0;
30 height: 0;
31 }
32 }
33
34 div[role=menu] {
35 max-height: 50vh;
36 min-height: 200px;
37 overflow: auto;
38 }