blob: eaf5a825026b378e05f27b84e414eb0f4de92ad4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
@use 'sass:math';
@use '_mixins' as *;
@use '_variables' as *;
@use '_miniature' as *;
.moderation-expanded {
font-size: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.moderation-expanded-label {
@include margin-right(5px);
font-weight: $font-semibold;
display: inline-block;
vertical-align: top;
text-align: end;
min-width: 100px;
}
.moderation-expanded-text {
display: inline-flex;
word-wrap: break-word;
::ng-deep p:last-child {
margin-bottom: 0 !important;
}
}
.right {
width: 50%;
max-width: 500px;
}
@media screen and (max-width: $primeng-breakpoint) {
.right {
width: 100%;
}
}
}
.chip {
@include chip;
}
my-action-dropdown.show {
::ng-deep .dropdown-root {
display: block !important;
}
}
.table-comment-link,
.table-account-link {
@include disable-outline;
color: var(--mainForegroundColor);
::ng-deep p:last-child {
margin: 0;
}
}
.table-account-link {
display: flex;
flex-direction: column;
}
my-abuse-details {
width: 100%;
}
@media screen and (max-width: $primeng-breakpoint) {
.abuse-messages {
justify-content: flex-start !important;
}
}
|