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