]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-moderation/moderation.scss
Remove avatarUrl from models
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / moderation.scss
CommitLineData
94148c90
C
1@import 'variables';
2@import 'mixins';
3@import 'miniature';
4
5.moderation-expanded {
6 font-size: 90%;
7
8 .moderation-expanded-label {
9 font-weight: $font-semibold;
10 display: inline-block;
11 vertical-align: top;
12 text-align: right;
13 }
14
15 .moderation-expanded-text {
16 display: inline-flex;
17 word-wrap: break-word;
18
19 ::ng-deep p:last-child {
20 margin-bottom: 0px !important;
21 }
22 }
23}
24
71ab65d0
RK
25.screenratio {
26 div {
27 @include miniature-thumbnail;
28
29 display: inline-flex;
30 justify-content: center;
31 align-items: center;
32 color: pvar(--inputPlaceholderColor);
33 }
34
cdeddff1 35 @include block-ratio($selector: 'div, ::ng-deep iframe') {
71ab65d0
RK
36 width: 100% !important;
37 height: 100% !important;
38 left: 0;
39 };
40}
41
94148c90
C
42.input-group {
43 @include peertube-input-group(300px);
44
45 .dropdown-toggle::after {
46 margin-left: 0;
47 }
48}
49
50.chip {
51 @include chip;
52}
53
54.caption {
55 justify-content: flex-end;
56
57 input {
58 @include peertube-input-text(250px);
59 flex-grow: 1;
60 }
61}
62
63my-action-dropdown.show {
64 ::ng-deep .dropdown-root {
65 display: block !important;
66 }
67}
4504f09f
RK
68
69.table-video-link {
70 @include disable-outline;
71
72 position: relative;
73 top: 3px;
74}
75
76.table-comment-link,
77.table-account-link {
78 @include disable-outline;
79
80 color: var(--mainForegroundColor);
81
82 ::ng-deep p:last-child {
83 margin: 0;
84 }
85}
86
87.table-account-link {
88 display: flex;
89 flex-direction: column;
90}
91
92.table-video {
93 display: inline-flex;
94
95 .table-video-image {
96 @include miniature-thumbnail;
97
98 $image-height: 45px;
99
100 height: $image-height;
101 width: #{(16/9) * $image-height};
102 margin-right: 0.5rem;
103 border-radius: 2px;
104 border: none;
105 background: transparent;
106 display: inline-flex;
107 justify-content: center;
4504f09f
RK
108 position: relative;
109
110 img {
111 height: 100%;
112 width: 100%;
113 border-radius: 2px;
114 }
115
116 span {
117 color: pvar(--inputPlaceholderColor);
118 }
119
120 .table-video-image-label {
121 @include static-thumbnail-overlay;
122 position: absolute;
123 border-radius: 3px;
124 font-size: 10px;
125 padding: 0 3px;
126 line-height: 1.3;
127 bottom: 2px;
128 right: 2px;
129 }
130 }
131
132 .table-video-text {
133 display: inline-flex;
134 flex-direction: column;
135 justify-content: center;
136 font-size: 90%;
137 color: pvar(--mainForegroundColor);
138 line-height: 1rem;
139
140 div .glyphicon {
141 font-size: 80%;
142 color: gray;
143 margin-left: 0.1rem;
144 }
145
146 div + div {
147 color: var(--greyForegroundColor);
148 font-size: 11px;
149 }
150 }
151}