Fix small mistakes in RTL layout (#2182)
Borders in blockquotes in reply-indicator weren't colored properly. avatar margin when viewing edited toots dropdown was applied to wrong side. Conversations had padding applied to the wrong side. Padding for notifcation cleaner checkboxes was applied to wrong side. Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
This commit is contained in:
parent
10259df1be
commit
c6305b9817
3 changed files with 4 additions and 4 deletions
|
@ -738,7 +738,7 @@ body > [data-popper-placement] {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
|
||||||
.account__avatar {
|
.account__avatar {
|
||||||
margin-right: 5px;
|
margin-inline-end: 5px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1699,7 +1699,7 @@ button.icon-button.active i.fa-retweet {
|
||||||
&__content {
|
&__content {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
padding: 10px 5px;
|
padding: 10px 5px;
|
||||||
padding-right: 15px;
|
padding-inline-end: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&__info {
|
&__info {
|
||||||
|
|
|
@ -177,7 +177,7 @@
|
||||||
.status,
|
.status,
|
||||||
.notification-follow,
|
.notification-follow,
|
||||||
.notification-follow-request {
|
.notification-follow-request {
|
||||||
padding-right: ($dismiss-overlay-width + 0.5rem);
|
padding-inline-end: ($dismiss-overlay-width + 0.5rem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
|
|
||||||
.reply-indicator__content {
|
.reply-indicator__content {
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left-color: $inverted-text-color;
|
border-inline-start-color: $inverted-text-color;
|
||||||
color: $inverted-text-color;
|
color: $inverted-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue