qvitter
qvitter copied to clipboard
[RTL] New Notice and Remote Follow popups are always LTR
screenshots?
This time, you can safely add an ‎
tag before @
, if needed,
Actually, I think, all is needed to be done, is not to force LTR for modal-footer
and modal-body
(remote follow), and modal-header
(compose notice).
Try to fix it by adding direction: rtl;
to .modal-content
in qvitter.css:4784
.modal-content {
background-clip: padding-box;
background-color: #FFFFFF;
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
position: relative;
direction: rtl;
}
and to .modal-draggable
in qvitter.css:4775
.modal-draggable {
margin: 0;
padding-bottom: 30px;
position: relative;
top: 30%;
left: 50%;
width: 588px;
z-index: 6000;
direction: rtl;
}