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