[RTL] Audio: Fix download button (#1515)
This commit is contained in:
parent
016bc3b83d
commit
77b33b28b3
@ -169,6 +169,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
unicode-bidi: plaintext;
|
||||||
}
|
}
|
||||||
|
|
||||||
.duration {
|
.duration {
|
||||||
|
|||||||
@ -321,7 +321,7 @@ const Audio: FC<OwnProps> = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={fullClassName} dir={lang.isRtl ? 'rtl' : undefined}>
|
<div className={fullClassName} dir={lang.isRtl ? 'rtl' : 'ltr'}>
|
||||||
{isSelectable && (
|
{isSelectable && (
|
||||||
<div className="message-select-control">
|
<div className="message-select-control">
|
||||||
{isSelected && <i className="icon-select" />}
|
{isSelected && <i className="icon-select" />}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user