diff options
author | Chocobozzz <me@florianbigard.com> | 2019-06-12 12:40:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-12 16:44:15 +0200 |
commit | 2f4c784a92ac50cacef07f4925e284b4041422f4 (patch) | |
tree | 159e744c68c5f5cd8054b5f63eb389553e13bf56 /client/src/app/search | |
parent | 011e1e6b37e15a44624b2d0e50263e16382060d2 (diff) | |
download | PeerTube-2f4c784a92ac50cacef07f4925e284b4041422f4.tar.gz PeerTube-2f4c784a92ac50cacef07f4925e284b4041422f4.tar.zst PeerTube-2f4c784a92ac50cacef07f4925e284b4041422f4.zip |
Add params to share modal
Diffstat (limited to 'client/src/app/search')
-rw-r--r-- | client/src/app/search/search.component.html | 2 | ||||
-rw-r--r-- | client/src/app/search/search.component.scss | 12 | ||||
-rw-r--r-- | client/src/app/search/search.module.ts | 5 |
3 files changed, 2 insertions, 17 deletions
diff --git a/client/src/app/search/search.component.html b/client/src/app/search/search.component.html index 0a9f78cb2..055f64cc8 100644 --- a/client/src/app/search/search.component.html +++ b/client/src/app/search/search.component.html | |||
@@ -20,7 +20,7 @@ | |||
20 | </div> | 20 | </div> |
21 | </div> | 21 | </div> |
22 | 22 | ||
23 | <div class="results-filter" [ngbCollapse]="isSearchFilterCollapsed"> | 23 | <div class="results-filter collapse-transition" [ngbCollapse]="isSearchFilterCollapsed"> |
24 | <my-search-filters [advancedSearch]="advancedSearch" (filtered)="onFiltered()"></my-search-filters> | 24 | <my-search-filters [advancedSearch]="advancedSearch" (filtered)="onFiltered()"></my-search-filters> |
25 | </div> | 25 | </div> |
26 | </div> | 26 | </div> |
diff --git a/client/src/app/search/search.component.scss b/client/src/app/search/search.component.scss index 4e3ce1c96..3343a276d 100644 --- a/client/src/app/search/search.component.scss +++ b/client/src/app/search/search.component.scss | |||
@@ -35,18 +35,6 @@ | |||
35 | } | 35 | } |
36 | } | 36 | } |
37 | } | 37 | } |
38 | |||
39 | .results-filter { | ||
40 | // Animation when we show/hide the filters | ||
41 | transition: max-height 0.3s; | ||
42 | display: block !important; | ||
43 | overflow: hidden !important; | ||
44 | max-height: 0; | ||
45 | |||
46 | &.show { | ||
47 | max-height: 1500px; | ||
48 | } | ||
49 | } | ||
50 | } | 38 | } |
51 | 39 | ||
52 | .entry { | 40 | .entry { |
diff --git a/client/src/app/search/search.module.ts b/client/src/app/search/search.module.ts index 0411fbe24..8b791621e 100644 --- a/client/src/app/search/search.module.ts +++ b/client/src/app/search/search.module.ts | |||
@@ -4,14 +4,11 @@ import { SearchComponent } from '@app/search/search.component' | |||
4 | import { SearchService } from '@app/search/search.service' | 4 | import { SearchService } from '@app/search/search.service' |
5 | import { SearchRoutingModule } from '@app/search/search-routing.module' | 5 | import { SearchRoutingModule } from '@app/search/search-routing.module' |
6 | import { SearchFiltersComponent } from '@app/search/search-filters.component' | 6 | import { SearchFiltersComponent } from '@app/search/search-filters.component' |
7 | import { NgbCollapseModule } from '@ng-bootstrap/ng-bootstrap' | ||
8 | 7 | ||
9 | @NgModule({ | 8 | @NgModule({ |
10 | imports: [ | 9 | imports: [ |
11 | SearchRoutingModule, | 10 | SearchRoutingModule, |
12 | SharedModule, | 11 | SharedModule |
13 | |||
14 | NgbCollapseModule | ||
15 | ], | 12 | ], |
16 | 13 | ||
17 | declarations: [ | 14 | declarations: [ |