mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-22 14:38:00 +00:00
minor styling fixes
* don't allow line wrapping in tables * replace legend for follow required message with div * set correct font family
This commit is contained in:
parent
9f5df5f95c
commit
baae0b46ac
|
@ -15,9 +15,7 @@
|
||||||
%a(href="https://{{domain}}/actor") << https://{{domain}}/actor</a>
|
%a(href="https://{{domain}}/actor") << https://{{domain}}/actor</a>
|
||||||
|
|
||||||
-if config.approval_required
|
-if config.approval_required
|
||||||
%fieldset.section.message
|
%div.section.message
|
||||||
%legend << Require Approval
|
|
||||||
|
|
||||||
Follow requests require approval. You will need to wait for an admin to accept or deny
|
Follow requests require approval. You will need to wait for an admin to accept or deny
|
||||||
your request.
|
your request.
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ body {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
margin: var(--spacing);
|
margin: var(--spacing);
|
||||||
font-family: sans serif;
|
font-family: sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
details *:nth-child(2) {
|
details *:nth-child(2) {
|
||||||
|
@ -88,6 +88,7 @@ tbody tr:last-child td:last-child {
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
table thead td {
|
table thead td {
|
||||||
|
@ -282,8 +283,11 @@ textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.data-table .date {
|
.data-table td:not(:first-child) {
|
||||||
width: max-content;
|
width: max-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
.data-table .date {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue