]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/account-video-channels/account-video-channels.component.scss
Fix bad date display for jobs
[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 31 my-actor-avatar {
27bc9586 32 @include margin-right(15px);
746018f6 33
900f7820
C
34 grid-column: 1;
35 grid-row: 1 / 3;
900f7820
C
36 }
37
38 a {
b45afe12
C
39 @include peertube-word-wrap;
40
900f7820
C
41 color: pvar(--mainForegroundColor);
42 }
43
44 h2 {
45 grid-row: 1;
46 grid-column: 2;
47 font-size: 20px;
48 line-height: 1;
49 font-weight: $font-bold;
50 margin: 0;
51 }
52
53 .actor-counters {
27bc9586 54 @include margin-left(15px);
61cbafc1 55 @include actor-counters;
27bc9586 56
900f7820
C
57 grid-row: 1;
58 grid-column: 3;
900f7820 59 }
fff77ba2 60
900f7820 61 .description-html {
931d3430
C
62 @include fade-text(30px, pvar(--channelBackgroundColor));
63
900f7820
C
64 grid-column: 2 / 4;
65 grid-row: 2;
66
67 max-height: 80px;
900f7820
C
68 }
69}
70
71my-subscribe-button {
72 grid-row: 1;
73 grid-column: 2;
74}
75
76.videos {
77 display: flex;
78 grid-column: 1 / 3;
79 grid-row: 2;
900f7820
C
80
81 position: relative;
900f7820
C
82
83 my-video-miniature {
27bc9586 84 @include margin-right(15px);
61cbafc1 85
0f7407d9
C
86 min-width: $video-thumbnail-medium-width;
87 max-width: $video-thumbnail-medium-width;
fff77ba2 88 }
bfbd9128 89
900f7820
C
90 .no-results {
91 height: auto;
bfbd9128 92 }
c8487f3f 93}
fff77ba2 94
52ebda26
C
95.videos-overflow-workaround {
96 margin-top: 30px;
97 overflow-x: hidden;
98}
99
900f7820
C
100.miniature-show-channel {
101 height: 100%;
102 position: absolute;
103 right: 0;
104 background: linear-gradient(90deg, transparent 0, pvar(--channelBackgroundColor) 45px);
8cbc40b2 105 padding: (math.div($video-thumbnail-medium-height, 2) - 10px) 15px 0 60px;
900f7820
C
106 z-index: z(miniature) + 1;
107
108 a {
109 color: pvar(--mainColor);
900f7820
C
110 font-weight: $font-semibold;
111 }
112}
113
114.button-show-channel {
115 display: none;
116}
117
02cb75c7 118@include on-small-main-col {
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
900f7820
C
130 .actor-counters {
131 margin: 0;
132 font-size: 13px;
133 grid-row: 2;
134 grid-column: 2 / 4;
135 }
136
137 .description-html {
138 grid-row: 3;
139 font-size: 14px;
4682468d
K
140 }
141 }
900f7820
C
142
143 .show-channel a {
144 @include peertube-button-link;
145 @include orange-button-inverted;
146 }
147
148 .videos {
149 display: none;
150 }
151
152 my-subscribe-button,
153 .button-show-channel {
154 grid-column: 1 / 4;
155 grid-row: 3;
156 margin-top: 15px;
157 }
158
159 my-subscribe-button {
160 justify-self: start;
161 }
162
163 .button-show-channel {
164 display: block;
165 justify-self: end;
166 }
4682468d 167}