]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/account/account-videos/account-videos.component.scss
Move to angular cli
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account-videos / account-videos.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .action-selection-mode {
5 width: 174px;
6 display: flex;
7 justify-content: flex-end;
8
9 .action-selection-mode-child {
10 position: fixed;
11
12 .action-button {
13 display: inline-block;
14 }
15
16 .action-button-cancel-selection {
17 @include peertube-button;
18 @include grey-button;
19
20 margin-right: 10px;
21 }
22
23 .action-button-delete-selection {
24 @include peertube-button;
25 @include orange-button;
26 }
27
28 .icon.icon-delete-white {
29 @include icon(21px);
30
31 position: relative;
32 top: -2px;
33 background-image: url('../../../assets/images/global/delete-white.svg');
34 }
35 }
36 }
37
38 /deep/ .action-button {
39 &.action-button-delete {
40 margin-right: 10px;
41 }
42 }
43
44 .video {
45 display: flex;
46 height: 130px;
47 padding-bottom: 20px;
48
49 input[type=checkbox] {
50 margin-right: 20px;
51 outline: 0;
52 }
53
54 &:first-child {
55 margin-top: 47px;
56 }
57
58 &:not(:last-child) {
59 margin-bottom: 20px;
60 border-bottom: 1px solid #C6C6C6;
61 }
62
63 my-video-thumbnail {
64 margin-right: 10px;
65 }
66
67 .video-info {
68 flex-grow: 1;
69
70 .video-info-name {
71 font-size: 16px;
72 font-weight: $font-semibold;
73 }
74
75 .video-info-date-views {
76 font-size: 13px;
77 }
78 }
79 }
80
81 @media screen and (max-width: 800px) {
82 .video {
83 flex-direction: column;
84 height: auto;
85 text-align: center;
86
87 input[type=checkbox] {
88 display: none;
89 }
90
91 my-video-thumbnail {
92 margin-right: 0;
93 }
94
95 .video-buttons {
96 margin-top: 10px;
97 }
98 }
99 }