]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/account/account-videos/account-videos.component.scss
Client bulk delete
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account-videos / account-videos.component.scss
CommitLineData
ce0e281d
C
1.action-selection-mode {
2 width: 174px;
3
4 .action-selection-mode-child {
5 position: fixed;
6 }
7}
8
9.action-button {
10 @include peertube-button-link;
11
12 font-size: 15px;
13 font-weight: $font-semibold;
14 color: #585858;
15 background-color: #E5E5E5;
16
17 &:hover {
18 background-color: #EFEFEF;
19 }
20
21 &.action-button-delete {
22 margin-right: 10px;
23 }
24
25 &.action-button-delete-selection {
26 background-color: $orange-color;
27 color: #fff;
28
29 &:hover {
30 background-color: $orange-hoover-color;
31 }
32 }
33
34 .icon {
35 display: inline-block;
36 background-repeat: no-repeat;
37 background-size: contain;
38 width: 21px;
39 height: 21px;
40 vertical-align: middle;
41 position: relative;
42 top: -2px;
43
44 &.icon-edit {
45 background-image: url('../../../assets/images/account/edit.svg');
46 }
47
48 &.icon-delete-grey {
49 background-image: url('../../../assets/images/account/delete-grey.svg');
50 }
51
52 &.icon-delete-white {
53 background-image: url('../../../assets/images/account/delete-white.svg');
54 }
55 }
56}
57
d2cc03aa
C
58.video {
59 display: flex;
60 height: 130px;
61 padding-bottom: 20px;
a2b817d3 62
ce0e281d
C
63 input[type=checkbox] {
64 margin-right: 20px;
65 outline: 0;
66 }
67
68 &:first-child {
69 margin-top: 47px;
70 }
71
a2b817d3
C
72 &:not(:last-child) {
73 margin-bottom: 20px;
74 border-bottom: 1px solid #C6C6C6;
75 }
d2cc03aa
C
76
77 my-video-thumbnail {
78 margin-right: 10px;
79 }
80
81 .video-info {
82 flex-grow: 1;
83
84 .video-info-name {
85 font-size: 16px;
86 font-weight: $font-semibold;
87 }
88
89 .video-info-date-views {
90 font-size: 13px;
91 }
92 }
d2cc03aa 93}