Merge branch 'release/2.1.0' into develop
[oweals/peertube.git] / client / src / app / shared / video / abstract-video-list.scss
1 @import '_mixins';
2 @import '_miniature';
3
4 .videos-header {
5   display: flex;
6   justify-content: space-between;
7   height: 80px;
8   align-items: baseline;
9
10   .title-page.title-page-single {
11     display: flex;
12
13     my-feed {
14       display: inline-block;
15       top: 1px;
16       margin-left: 5px;
17       width: max-content;
18     }
19   }
20
21   .action-block {
22     a button {
23       @include peertube-button;
24       @include grey-button;
25       @include button-with-icon(18px, 3px, -1px);
26     }
27   }
28
29   .moderation-block {
30     display: flex;
31     flex-grow: 1;
32     justify-content: flex-end;
33     align-items: center;
34   }
35 }
36
37 .date-title {
38   font-size: 16px;
39   font-weight: $font-semibold;
40   margin-bottom: 20px;
41   margin-top: -10px;
42   padding-top: 20px;
43
44   &:not(:first-child) {
45     border-top: 1px solid $separator-border-color;
46   }
47 }
48
49 .margin-content {
50   @include adapt-margin-content-width;
51 }
52