diff options
author | Chocobozzz <me@florianbigard.com> | 2021-10-20 14:50:46 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-10-20 14:50:46 +0200 |
commit | ebe9b6b3f32d8432980854a51d28a8fb88fe62e5 (patch) | |
tree | b478430b849b57555512a37eb87717ab5bb85a37 /client/src/app | |
parent | 64553e8809271df1113e9143426a27f234410a74 (diff) | |
download | PeerTube-ebe9b6b3f32d8432980854a51d28a8fb88fe62e5.tar.gz PeerTube-ebe9b6b3f32d8432980854a51d28a8fb88fe62e5.tar.zst PeerTube-ebe9b6b3f32d8432980854a51d28a8fb88fe62e5.zip |
Fix ng select tags height
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+admin/system/logs/logs.component.scss | 5 | ||||
-rw-r--r-- | client/src/app/shared/shared-forms/select/select-tags.component.scss | 15 |
2 files changed, 18 insertions, 2 deletions
diff --git a/client/src/app/+admin/system/logs/logs.component.scss b/client/src/app/+admin/system/logs/logs.component.scss index be66d563b..128c71e40 100644 --- a/client/src/app/+admin/system/logs/logs.component.scss +++ b/client/src/app/+admin/system/logs/logs.component.scss | |||
@@ -52,6 +52,11 @@ | |||
52 | @include peertube-select-container(150px); | 52 | @include peertube-select-container(150px); |
53 | } | 53 | } |
54 | 54 | ||
55 | my-select-tags { | ||
56 | min-width: 250px; | ||
57 | max-width: 400px; | ||
58 | } | ||
59 | |||
55 | > * { | 60 | > * { |
56 | @include margin-left(10px); | 61 | @include margin-left(10px); |
57 | } | 62 | } |
diff --git a/client/src/app/shared/shared-forms/select/select-tags.component.scss b/client/src/app/shared/shared-forms/select/select-tags.component.scss index ad76bc7ee..f45884fb2 100644 --- a/client/src/app/shared/shared-forms/select/select-tags.component.scss +++ b/client/src/app/shared/shared-forms/select/select-tags.component.scss | |||
@@ -1,3 +1,14 @@ | |||
1 | ng-select ::ng-deep .ng-arrow-wrapper { | 1 | ng-select ::ng-deep { |
2 | display: none; | 2 | .ng-arrow-wrapper { |
3 | display: none; | ||
4 | } | ||
5 | |||
6 | .ng-value-container { | ||
7 | padding-top: 2px !important; | ||
8 | } | ||
9 | |||
10 | .ng-value { | ||
11 | margin-bottom: 2px !important; | ||
12 | max-height: 24px; | ||
13 | } | ||
3 | } | 14 | } |