]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/search/search.component.scss
add theming via css custom properties
[github/Chocobozzz/PeerTube.git] / client / src / app / search / search.component.scss
CommitLineData
57c36b27
C
1@import '_variables';
2@import '_mixins';
3
57c36b27 4.search-result {
b34a444e 5 padding: 40px;
57c36b27 6
0b18f4aa
C
7 .results-header {
8 font-size: 16px;
57c36b27
C
9 padding-bottom: 20px;
10 margin-bottom: 30px;
11 border-bottom: 1px solid #DADADA;
12
0b18f4aa
C
13 .first-line {
14 display: flex;
15 flex-direction: row;
16
17 .results-counter {
18 flex-grow: 1;
19
20 .search-value {
21 font-weight: $font-semibold;
22 }
23 }
24
25 .results-filter-button {
b1ee8526 26 cursor: pointer;
0b18f4aa
C
27
28 .icon.icon-filter {
29 @include icon(20px);
30
31 position: relative;
32 top: -1px;
33 margin-right: 5px;
34 background-image: url('../../assets/images/search/filter.svg');
35 }
36 }
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 {
6e930af9 47 max-height: 1500px;
0b18f4aa 48 }
57c36b27
C
49 }
50 }
51
52 .entry {
53 display: flex;
54 min-height: 130px;
55 padding-bottom: 20px;
56 margin-bottom: 20px;
57
58 &.video {
59
60 my-video-thumbnail {
61 margin-right: 10px;
62 }
63
64 .video-info {
65 flex-grow: 1;
66
67 .video-info-name {
68 @include disable-default-a-behaviour;
69
9a0fc840 70 color: var(--mainForegroundColor);
57c36b27
C
71 display: block;
72 width: fit-content;
73 font-size: 18px;
74 font-weight: $font-semibold;
75 }
76
77 .video-info-date-views {
78 font-size: 14px;
79 }
80
81 .video-info-account {
82 @include disable-default-a-behaviour;
83
84 display: block;
85 width: fit-content;
86 overflow: hidden;
87 text-overflow: ellipsis;
88 white-space: nowrap;
89 font-size: 14px;
90 color: #585858;
91
92 &:hover {
93 color: #303030;
94 }
95 }
96 }
97 }
f37dc0dd
C
98
99 &.video-channel {
100
101 img {
102 @include avatar(120px);
103
104 margin: 0 50px 0 40px;
105 }
106
107 .video-channel-info {
f37dc0dd
C
108 flex-grow: 1;
109 width: fit-content;
110
111 .video-channel-names {
112 @include disable-default-a-behaviour;
113
114 display: flex;
115 align-items: baseline;
9a0fc840 116 color: var(--mainForegroundColor);
f37dc0dd
C
117 width: fit-content;
118
119 .video-channel-display-name {
120 font-weight: $font-semibold;
121 font-size: 18px;
122 }
123
124 .video-channel-name {
125 font-size: 14px;
126 color: $grey-actor-name;
127 margin-left: 5px;
128 }
129 }
130 }
131 }
57c36b27
C
132 }
133}
134
135@media screen and (max-width: 800px) {
0933bb4a 136 .search-result {
b1ee8526 137 padding: 20px 10px;
0933bb4a
C
138 }
139
6e930af9
C
140 .results-header {
141 font-size: 15px !important;
142 }
143
57c36b27
C
144 .entry {
145 flex-direction: column;
146 height: auto;
147 text-align: center;
148
149 &.video {
6e930af9
C
150 .video-info-name,
151 .video-info-account {
57c36b27
C
152 margin: auto;
153 }
154
155 my-video-thumbnail {
0933bb4a
C
156 margin-right: 0 !important;
157
158 /deep/ .video-thumbnail {
159 width: 100%;
160 height: auto;
161
162 img {
163 width: 100%;
164 height: auto;
165 }
166 }
57c36b27
C
167 }
168 }
169 }
170}