]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/account-video-channels/account-video-channels.component.scss
Merge branch 'master' into release/3.3.0
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / account-video-channels / account-video-channels.component.scss
CommitLineData
8cbc40b2
C
1@use 'sass:math';
2@use '_variables' as *;
3@use '_mixins' as *;
4@use '_miniature' as *;
d3e91a5f 5
c8487f3f 6.margin-content {
0f7407d9 7 @include grid-videos-miniature-margins;
d3e91a5f
C
8}
9
900f7820
C
10.channel {
11 max-width: $max-channels-width;
12 background-color: pvar(--channelBackgroundColor);
733dbc53 13 padding: 30px;
d3e91a5f 14
900f7820 15 margin: 30px 0;
ee79b60e 16
900f7820
C
17 display: grid;
18 grid-template-columns: 1fr auto;
19 grid-template-rows: auto auto;
20 column-gap: 15px;
21}
22
23.channel-avatar-row {
24 grid-column: 1;
25 grid-row: 1;
26
27 display: grid;
28 grid-template-columns: auto auto 1fr;
29 grid-template-rows: auto 1fr;
30
746018f6
C
31 my-actor-avatar {
32 @include actor-avatar-size(75px);
27bc9586 33 @include margin-right(15px);
746018f6 34
900f7820
C
35 grid-column: 1;
36 grid-row: 1 / 3;
900f7820
C
37 }
38
39 a {
b45afe12
C
40 @include peertube-word-wrap;
41
900f7820
C
42 color: pvar(--mainForegroundColor);
43 }
44
45 h2 {
46 grid-row: 1;
47 grid-column: 2;
48 font-size: 20px;
49 line-height: 1;
50 font-weight: $font-bold;
51 margin: 0;
52 }
53
54 .actor-counters {
27bc9586 55 @include margin-left(15px);
61cbafc1 56 @include actor-counters;
27bc9586 57
900f7820
C
58 grid-row: 1;
59 grid-column: 3;
900f7820 60 }
fff77ba2 61
900f7820 62 .description-html {
931d3430
C
63 @include fade-text(30px, pvar(--channelBackgroundColor));
64
900f7820
C
65 grid-column: 2 / 4;
66 grid-row: 2;
67
68 max-height: 80px;
69 font-size: 16px;
900f7820
C
70 }
71}
72
73my-subscribe-button {
74 grid-row: 1;
75 grid-column: 2;
76}
77
78.videos {
79 display: flex;
80 grid-column: 1 / 3;
81 grid-row: 2;
82 margin-top: 30px;
83
84 position: relative;
85 overflow: hidden;
86
87 my-video-miniature {
27bc9586 88 @include margin-right(15px);
61cbafc1 89
0f7407d9
C
90 min-width: $video-thumbnail-medium-width;
91 max-width: $video-thumbnail-medium-width;
fff77ba2 92 }
bfbd9128 93
900f7820
C
94 .no-results {
95 height: auto;
bfbd9128 96 }
c8487f3f 97}
fff77ba2 98
900f7820
C
99.miniature-show-channel {
100 height: 100%;
101 position: absolute;
102 right: 0;
103 background: linear-gradient(90deg, transparent 0, pvar(--channelBackgroundColor) 45px);
8cbc40b2 104 padding: (math.div($video-thumbnail-medium-height, 2) - 10px) 15px 0 60px;
900f7820
C
105 z-index: z(miniature) + 1;
106
107 a {
108 color: pvar(--mainColor);
109 font-size: 16px;
110 font-weight: $font-semibold;
111 }
112}
113
114.button-show-channel {
115 display: none;
116}
117
4682468d 118@media screen and (max-width: $mobile-view) {
733dbc53
C
119 .channel {
120 padding: 15px;
121 }
122
900f7820
C
123 .channel-avatar-row {
124 grid-template-columns: auto auto auto 1fr;
125
126 .avatar-link {
127 grid-row: 1 / 4;
128 }
129
130 h2 {
131 font-size: 16px;
132 }
133
134 .actor-counters {
135 margin: 0;
136 font-size: 13px;
137 grid-row: 2;
138 grid-column: 2 / 4;
139 }
140
141 .description-html {
142 grid-row: 3;
143 font-size: 14px;
4682468d
K
144 }
145 }
900f7820
C
146
147 .show-channel a {
148 @include peertube-button-link;
149 @include orange-button-inverted;
150 }
151
152 .videos {
153 display: none;
154 }
155
156 my-subscribe-button,
157 .button-show-channel {
158 grid-column: 1 / 4;
159 grid-row: 3;
160 margin-top: 15px;
161 }
162
163 my-subscribe-button {
164 justify-self: start;
165 }
166
167 .button-show-channel {
168 display: block;
169 justify-self: end;
170 }
4682468d 171}