]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-video-miniature/abstract-video-list.scss
Fix scroll check in infinite scroller directive
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / abstract-video-list.scss
CommitLineData
e66883b3
RK
1@import '_bootstrap-variables';
2@import '_variables';
244e76a5 3@import '_mixins';
830b4faf 4@import '_miniature';
244e76a5 5
2b587cad
RK
6$iconSize: 16px;
7
017c3dca
C
8.videos-header {
9 display: flex;
13adf228 10 justify-content: space-between;
2b587cad 11 align-items: center;
017c3dca
C
12
13 .title-page.title-page-single {
13adf228 14 display: flex;
2b587cad 15 flex-grow: 1;
017c3dca 16 }
cc1561f9 17
13adf228 18 .action-block {
2b587cad
RK
19 ::ng-deep my-feed {
20 my-global-icon {
21 width: calc(#{$iconSize} - 2px);
22 }
23 }
24
13adf228
RK
25 a button {
26 @include peertube-button;
27 @include grey-button;
2b587cad 28 @include button-with-icon($iconSize, 3px, -1px);
13adf228 29 }
017c3dca
C
30 }
31
32 .moderation-block {
2b587cad 33 div {
0aa52e17 34 @include button-with-icon($iconSize, 3px, -2px);
2b587cad
RK
35 }
36
0aa52e17 37 margin-left: .4rem;
017c3dca 38 display: flex;
017c3dca
C
39 justify-content: flex-end;
40 align-items: center;
0aa52e17
C
41
42 .dropdown-item {
43 padding: 0;
44
45 ::ng-deep my-peertube-checkbox label {
46 padding: 3px 15px;
47 }
48 }
017c3dca 49 }
244e76a5
RK
50}
51
34c7f429
C
52.date-title {
53 font-size: 16px;
54 font-weight: $font-semibold;
55 margin-bottom: 20px;
56 margin-top: -10px;
34c7f429 57
e66883b3
RK
58 // make the element span a full grid row within .videos grid
59 grid-column: 1 / -1;
60
34c7f429 61 &:not(:first-child) {
d840487f
RK
62 margin-top: .5rem;
63 padding-top: 20px;
34c7f429
C
64 border-top: 1px solid $separator-border-color;
65 }
66}
67
cf78883c
C
68.margin-content {
69 @include fluid-videos-miniature-layout;
7193ad10 70}
11dd0c2e 71
4682468d
K
72@media screen and (max-width: $mobile-view) {
73 .videos-header {
74 flex-direction: column;
75 align-items: center;
76 height: auto;
cf78883c 77 margin-bottom: 10px;
4682468d
K
78
79 .title-page {
80 margin-bottom: 10px;
81 margin-right: 0px;
82 }
83 }
84}