]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/application.scss
Add buttons in playlist page
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
CommitLineData
161b061d 1$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
63c4db6d 2
9b8a7aa8 3@import '_bootstrap-variables';
dcbc29d5
C
4@import '_variables';
5@import '_mixins';
6
fa40cbc3 7@import '_fonts';
63c4db6d 8
d592e0a9 9@import '~video.js/dist/video-js.css';
c893d451 10
583eb04b 11$assets-path: '../../assets/';
b335ccec 12@import './player/index';
e31f6ad6 13
2f4c784a 14@import './bootstrap';
bbe0f064
C
15@import './primeng-custom';
16
383bfc83
C
17[hidden] {
18 display: none !important;
19}
a64668c0 20
b33f657c 21body {
dcbc29d5
C
22 /*** theme ***/
23 // now beware node-sass requires interpolation
24 // for css custom properties #{$var}
680b5496
RK
25 --mainColor: #{$main-color};
26 --mainColorLighter: #{$main-color-lighter};
a6d5ff76 27 --mainColorLightest: #{$main-color-lightest};
680b5496 28 --mainHoverColor: #{$main-hover-color};
dcbc29d5
C
29 --mainBackgroundColor: #{$bg-color};
30 --mainForegroundColor: #{$fg-color};
680b5496 31 --secondaryColor: #{$secondary-color};
2fcc2294 32
c123027f 33 --greyForegroundColor: #{$grey-foreground-color};
441e453a 34 --greyBackgroundColor: #{$grey-background-color};
c123027f 35
1d9d9cfd
RK
36 --menuBackgroundColor: #{$menu-background};
37 --menuForegroundColor: #{$menu-color};
dcbc29d5 38 --submenuColor: #{$sub-menu-color};
2fcc2294 39
3bf07dd8 40 --inputForegroundColor: #{$input-foreground-color};
14aa8556 41 --inputBackgroundColor: #{$input-background-color};
dcbc29d5
C
42 --inputPlaceholderColor: #{$input-placeholder-color};
43
3bf07dd8 44 --textareaForegroundColor: #{$textarea-foreground-color};
b15fe00f 45 --textareaBackgroundColor: #{$textarea-background-color};
f33dc6ab 46 --markdownTextareaBackgroundColor: #{$markdown-textarea-background-color};
b15fe00f 47
0240da5c
RK
48 --actionButtonColor: #{$grey-foreground-color};
49 --supportButtonBackgroundColor: #{transparent};
e66883b3 50 --supportButtonColor: #{pvar(--actionButtonColor)};
0240da5c 51 --supportButtonHeartColor: #{$support-button-heart};
2fcc2294 52
5f57df54
C
53 --activatedActionButtonColor: #{$activated-action-button-color};
54
10846ef6
C
55 --expanded-horizontal-margin-content: $expanded-horizontal-margins;
56
8a8e02a4 57 font-family: $main-fonts;
b33f657c 58 font-weight: $font-regular;
e66883b3
RK
59 color: pvar(--mainForegroundColor);
60 background-color: pvar(--mainBackgroundColor);
b34a444e 61 font-size: 14px;
8110705d 62 // On desktop browsers, make sure vertical scroll bar is always visible
63 // Allow to disable the scrollbar instead of hide it when the content fit the body
64 // And not move the content and header horizontally sticked to right when the content is updating
65 overflow-y: scroll;
b33f657c
C
66}
67
52cc0d54 68::selection {
e66883b3
RK
69 color: pvar(--mainBackgroundColor);
70 background-color: pvar(--mainHoverColor);
52cc0d54
RK
71}
72
73e09f27
C
73#incompatible-browser {
74 display: none;
75 text-align: center;
76 position: absolute;
77 width: 100%;
78 top: 45%;
79}
80
07fa4c97
C
81strong {
82 font-weight: $font-semibold;
83}
84
383bfc83
C
85input.readonly {
86 /* Force blank on readonly inputs */
e66883b3 87 background-color: pvar(--inputBackgroundColor) !important;
0ac5edd9 88}
89
63347a0f
C
90input, textarea {
91 outline: none;
e66883b3 92 color: pvar(--mainForegroundColor);
63347a0f
C
93}
94
adcf9212
CC
95button {
96 background: unset;
97 @include disable-outline;
98}
99
d235f6b0
C
100label {
101 font-weight: $font-bold;
102 font-size: 15px;
09223546
C
103}
104
a2b817d3
C
105.form-error {
106 display: block;
41a676db 107 color: $red;
a2b817d3
C
108 margin-top: 5px;
109}
110
111.input-error {
41a676db 112 border-color: $red !important;
a2b817d3
C
113}
114
2d9fea16
RK
115.fullWidth {
116 width: 100%;
117 margin-left: auto;
118 margin-right: auto;
119 max-width: initial;
120}
121
383bfc83
C
122.glyphicon-black {
123 color: black;
124}
125
c4741804 126.row {
947d0102 127 margin: 0 !important;
c4741804
RK
128}
129
383bfc83 130.main-col {
c30745f3 131 margin-left: $menu-width;
c4741804 132 width: calc(100% - #{$menu-width});
a6d5ff76 133 outline: none;
9bf9d2a5 134
c30745f3 135 .margin-content {
d178b5c1
C
136 margin-left: $not-expanded-horizontal-margins;
137 margin-right: $not-expanded-horizontal-margins;
b34a444e 138 flex-grow: 1;
c30745f3
C
139 }
140
a949f676
K
141 my-top-menu-dropdown + .margin-content {
142 padding-top: $sub-menu-height + $sub-menu-margin-bottom;
143 }
144
c30745f3 145 .sub-menu {
e66883b3 146 background-color: pvar(--submenuColor);
c30745f3 147 width: 100%;
ed5bb517 148 height: $sub-menu-height;
c30745f3
C
149 display: flex;
150 align-items: center;
d178b5c1 151 padding-left: $not-expanded-horizontal-margins;
22a16e36 152 padding-right: $not-expanded-horizontal-margins;
ed5bb517 153 position: fixed;
a949f676
K
154 z-index: #{z('header') - 1};
155
156 & + .margin-content {
2045b572 157 padding-top: $sub-menu-height + $sub-menu-margin-bottom;
a949f676 158 }
c30745f3
C
159 }
160
161 // Override some properties if the main content is expanded (no menu on the left)
162 &.expanded {
163 margin-left: 0;
c4741804 164 width: 100%;
c30745f3
C
165
166 .margin-content {
10846ef6
C
167 margin-left: var(--expanded-horizontal-margin-content);
168 margin-right: var(--expanded-horizontal-margin-content);
c30745f3
C
169 }
170
171 .sub-menu {
10846ef6
C
172 padding-left: var(--expanded-horizontal-margin-content);
173 padding-right: var(--expanded-horizontal-margin-content);
c30745f3 174 }
602eb142 175 }
b15fe00f
K
176
177 &.lock-scroll .main-row > router-outlet + * {
178 // Lock and hide body scrollbars
179 position: fixed;
180
181 // Lock and hide sub-menu scrollbars
182 .sub-menu {
183 overflow-x: hidden;
184 }
185 }
383bfc83 186}
602eb142 187
59aa1e5e 188.title-page {
ed5bb517 189 opacity: 0.6;
e66883b3 190 color: pvar(--mainForegroundColor);
59aa1e5e
C
191 font-size: 16px;
192 display: inline-block;
193 margin-right: 55px;
194 font-weight: $font-semibold;
195 @include disable-default-a-behaviour;
196
ed5bb517
K
197 border-bottom: 2px solid transparent;
198
199 &.title-page-single {
59aa1e5e
C
200 margin-top: 30px;
201 margin-bottom: 25px;
202 }
cadb46d8 203
d6ed9ccc 204 &.active {
ed5bb517 205 border-bottom-color: pvar(--mainColor);
d6ed9ccc
RK
206 }
207
208 &.title-page-single {
209 font-size: 125%;
210 }
211
cadb46d8 212 &:hover, &:active, &:focus {
e66883b3 213 color: pvar(--mainForegroundColor);
04e0fc48 214 }
1952a538 215
ed5bb517
K
216 &.active, &:hover, &:active, &:focus, &.title-page-single {
217 opacity: 1;
218 outline: 0px hidden !important;
219 }
220
ece3029b 221 @media screen and (max-width: $mobile-view) {
2c3abc4f 222 margin-right: 15px;
1952a538 223 }
cadb46d8 224}
04e0fc48 225
482fa503
RK
226.title-page-about,
227.title-page-settings {
e61151b0 228 white-space: nowrap;
482fa503 229 font-size: 115%;
482fa503
RK
230}
231
cd83ea1b
C
232.admin-sub-header {
233 display: flex;
234 align-items: center;
235 margin-bottom: 30px;
236
08c1efbe 237 .form-sub-title {
cd83ea1b
C
238 flex-grow: 1;
239 }
65b247dd
C
240
241 .admin-sub-nav a {
242 @include disable-default-a-behaviour;
243
244 font-size: 16px;
e66883b3 245 color: pvar(--mainForegroundColor);
65b247dd
C
246 padding: 5px 15px;
247 border-radius: 0.25rem;
ed5bb517
K
248 font-weight: $font-semibold;
249 opacity: 0.6;
65b247dd
C
250
251 &.active {
65b247dd 252 background-color: #f0f0f0;
ed5bb517
K
253 }
254
255 &.active, &:hover, &:active, &:focus {
256 opacity: 1;
65b247dd
C
257 }
258 }
cd83ea1b
C
259}
260
08c1efbe 261.form-sub-title {
04e0fc48
C
262 font-size: 20px;
263 font-weight: bold;
59aa1e5e
C
264}
265
315cc0cc
C
266@keyframes spin {
267 from { transform: scale(1) rotate(0deg);}
268 to { transform: scale(1) rotate(360deg);}
269}
270
fb4fd623
C
271// In tables, don't have a hover different background
272table {
273 .action-button-edit, .action-button-delete {
274 &:hover, &:active, &:focus, &[disabled], &.disabled {
457bb213 275 background-color: $grey-background-color !important;
fb4fd623
C
276 }
277 }
278}
279
2d3741d6
C
280.no-results {
281 height: 40vh;
22839330
RK
282 max-height: 500px;
283
2d3741d6 284 display: flex;
82f443de 285 flex-direction: column;
2d3741d6
C
286 align-items: center;
287 justify-content: center;
288 font-size: 16px;
289 font-weight: $font-semibold;
290}
291
eb7c7a51
RK
292.dropdown-item {
293 @include dropdown-with-icon-item;
294
295 my-global-icon {
296 width: 22px;
297 height: 22px;
298 }
299}
300
45e0d669
RK
301.anchor {
302 position: relative;
303 top: #{-($header-height + 20px)};
304}
305
165ee292 306@media screen and (max-width: #{breakpoint(xxl)}) {
2303a803
RK
307 .main-col {
308 &.expanded {
309 .margin-content {
10846ef6 310 --expanded-horizontal-margin-content: $expanded-horizontal-margins/2;
2303a803
RK
311 }
312 }
313 }
314}
315
165ee292 316@media screen and (max-width: #{breakpoint(lg)}) {
1def3c52 317 /* the following applies from 500px to 900px and is partially overriden from 500px to 800px by changes below to $small-view */
1f788f20 318 .main-col {
1def3c52
RK
319 &, &.expanded {
320 .margin-content {
10846ef6 321 --expanded-horizontal-margin-content: $expanded-horizontal-margins/3;
1def3c52 322 }
dd778941 323
1def3c52
RK
324 .sub-menu {
325 padding-left: 50px;
326 padding-right: 50px;
22a16e36 327
1def3c52
RK
328 .title-page {
329 font-size: 17px;
330 }
dd778941 331 }
1f788f20
C
332 }
333 }
334}
335
1f6d2449 336@media screen and (min-width: $mobile-view) and (max-width: $small-view) {
ac6ac4e2 337 .main-col {
338 width: 100%;
339 }
340}
341
8ff3f883 342@media screen and (max-width: $small-view) {
20206dfb
C
343 .main-col {
344 margin-left: 0;
345
346 &, &.expanded {
347 .margin-content {
10846ef6 348 --expanded-horizontal-margin-content: 15px;
20206dfb
C
349 }
350
351 .sub-menu {
2c3abc4f 352 width: 100vw;
dd778941 353 padding-left: 15px;
22a16e36 354 padding-right: 15px;
4682468d 355 margin-bottom: $sub-menu-margin-bottom-small-view;
8544d8f5 356 overflow-x: auto;
20206dfb
C
357 }
358
7a03209d
K
359 .admin-sub-header {
360 @include admin-sub-header-responsive(15px*2);
361 }
362
b15fe00f
K
363 my-markdown-textarea {
364 .root {
365 max-width: 100% !important;
366 }
367 }
368
4682468d
K
369 input[type=text],
370 input[type=password],
371 input[type=email],
c285180a 372 textarea,
373 .peertube-select-container {
225a7682 374 flex-grow: 1;
20206dfb 375 }
25a42e29
RK
376
377 .caption input[type=text] {
378 width: unset !important;
379 flex-grow: 1;
380 }
20206dfb
C
381 }
382 }
457bb213 383}
7a03209d 384
165ee292 385// overflow-databale responsive rules
c2a89b70 386@media screen and (min-width: #{breakpoint(lg)}) {
165ee292
K
387 .main-col {
388 &.expanded {
c2a89b70 389 @include overflow-datatable(breakpoint(lg), $expanded-horizontal-margins/2, $mobile-paginator: false);
165ee292
K
390 }
391
392 &:not(.expanded) {
c2a89b70 393 @include overflow-datatable(breakpoint(lg), $not-expanded-horizontal-margins + $menu-width/2, $mobile-paginator: false);
165ee292
K
394 }
395 }
396}
397
398@media screen and (max-width: #{breakpoint(lg)}) {
399 .main-col {
400 &.expanded {
401 @include overflow-datatable(breakpoint(lg), $expanded-horizontal-margins/3);
402 }
403
404 &:not(.expanded) {
c2a89b70 405 @include overflow-datatable(breakpoint(lg), $expanded-horizontal-margins/3 + $menu-width/2);
165ee292
K
406 }
407 }
408}
409
410@media screen and (max-width: $small-view) {
411 .main-col {
412 &:not(.expanded),
413 &.expanded {
414 @include overflow-datatable(breakpoint(lg), 15px);
415 }
416 }
417}
418
7a03209d
K
419@media screen and (min-width: $small-view) and (max-width: #{$small-view + $menu-width}) {
420 .main-col {
421 &:not(.expanded) {
422 .admin-sub-header {
c2a89b70 423 @include admin-sub-header-responsive($expanded-horizontal-margins/3 + $menu-width/2);
7a03209d 424 }
8544d8f5
K
425
426 .sub-menu {
427 overflow-x: auto;
428 width: calc(100vw - #{$menu-width});
429 }
7a03209d
K
430 }
431 }
432}