Thinner blockquotes. Corrected user on private messaging.
This commit is contained in:
parent
36ab3b67bf
commit
a5c58eb090
2 changed files with 2 additions and 2 deletions
2
ui/assets/css/main.css
vendored
2
ui/assets/css/main.css
vendored
|
@ -117,7 +117,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 3px solid #ccc;
|
border-left: 1px solid var(--secondary);
|
||||||
margin: 0.5em 5px;
|
margin: 0.5em 5px;
|
||||||
padding: 0.1em 5px;
|
padding: 0.1em 5px;
|
||||||
}
|
}
|
||||||
|
|
2
ui/src/components/private-message-form.tsx
vendored
2
ui/src/components/private-message-form.tsx
vendored
|
@ -126,7 +126,7 @@ export class PrivateMessageForm extends Component<
|
||||||
{this.state.recipient && (
|
{this.state.recipient && (
|
||||||
<div class="col-sm-10 form-control-plaintext">
|
<div class="col-sm-10 form-control-plaintext">
|
||||||
<Link
|
<Link
|
||||||
className="text-info"
|
className="text-body font-weight-bold"
|
||||||
to={`/u/${this.state.recipient.name}`}
|
to={`/u/${this.state.recipient.name}`}
|
||||||
>
|
>
|
||||||
{this.state.recipient.avatar && showAvatars() && (
|
{this.state.recipient.avatar && showAvatars() && (
|
||||||
|
|
Reference in a new issue