mirror of
https://github.com/discourse/discourse.git
synced 2025-02-17 07:42:45 +08:00
FIX: Topic progress bar should be on the left in RTL layouts (#11999)
This commit is contained in:
parent
6caef085d3
commit
dbb015f03e
|
@ -50,8 +50,14 @@
|
|||
margin-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
html.rtl & {
|
||||
right: 0;
|
||||
left: 1em;
|
||||
/**
|
||||
* This should be the other way around, but it has to be "wrong" here
|
||||
* because our RTL CSS is generated using the `rtlit` gem which flips
|
||||
* left to right and right to left, so this will be corrected when it
|
||||
* goes through rtlit.
|
||||
*/
|
||||
left: unset;
|
||||
right: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user