hannesmannerheim / qvitter

mirror. moved to https://git.gnu.io/h2p/Qvitter, send merge requests and issues there
https://git.gnu.io/h2p/Qvitter
GNU Affero General Public License v3.0
86 stars 26 forks source link

[RTL] New Notice and Remote Follow popups are always LTR #207

Open GreenLunar opened 9 years ago

hannesmannerheim commented 9 years ago

screenshots?

GreenLunar commented 9 years ago

bad_remote_follow

This time, you can safely add an ‎ tag before @, if needed,

GreenLunar commented 9 years ago

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).

GreenLunar commented 7 years ago

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;
    }