Fix labels for checkboxes in RTL layout

main
Isaiah Odhner 2020-12-16 15:53:38 -05:00
parent d21b37404f
commit 59f7b8e6a0
2 changed files with 14 additions and 0 deletions

View File

@ -619,6 +619,13 @@ html, body, .jspaint {
width: 200px;
}
/* fix checkboxes in RTL layout; with display inline labels can get super out of order with the checkboxes - very confusing! */
fieldset > label {
display: inline-flex;
flex-direction: row;
direction: ltr;
}
/* @TODO: part of os-gui */
.os-window {
display: flex;

View File

@ -619,6 +619,13 @@ html, body, .jspaint {
width: 200px;
}
/* fix checkboxes in RTL layout; with display inline labels can get super out of order with the checkboxes - very confusing! */
fieldset > label {
display: inline-flex;
flex-direction: row;
direction: rtl;
}
/* @TODO: part of os-gui */
.os-window {
display: flex;