]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-ownership/my-account-ownership.component.scss
variable columns for users list, more columns possible, badge display for statuses
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-ownership / my-account-ownership.component.scss
CommitLineData
4c9e9d2e
RK
1@import 'miniature';
2@import 'mixins';
3
4.chip {
5 @include chip;
6}
7
8.video-table-video {
9 display: inline-flex;
10
11 .video-table-video-image {
12 @include miniature-thumbnail;
13
14 $image-height: 45px;
15
16 height: $image-height;
17 width: #{(16/9) * $image-height};
18 margin-right: 0.5rem;
19 border-radius: 2px;
20 border: none;
21 background: transparent;
22 display: inline-flex;
23 justify-content: center;
24 align-items: center;
25 position: relative;
26
27 img {
28 height: 100%;
29 width: 100%;
30 border-radius: 2px;
31 }
32
33 span {
34 color: pvar(--inputPlaceholderColor);
35 }
36
37 .video-table-video-image-label {
38 @include static-thumbnail-overlay;
39 position: absolute;
40 border-radius: 3px;
41 font-size: 10px;
42 padding: 0 3px;
43 line-height: 1.3;
44 bottom: 2px;
45 right: 2px;
46 }
47 }
48
49 .video-table-video-text {
50 display: inline-flex;
51 flex-direction: column;
52 justify-content: center;
53 font-size: 90%;
54 color: pvar(--mainForegroundColor);
55 line-height: 1rem;
56
57 div .glyphicon {
58 font-size: 80%;
59 color: gray;
60 margin-left: 0.1rem;
61 }
62
63 div + div {
64 font-size: 80%;
65 }
66 }
67}