diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-29 06:03:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 06:03:35 +0000 |
commit | f3454b8a6b1ad8161bb69d49ae1f5f6416fe71ff (patch) | |
tree | ad22bb8a9aa4823c51a77403d49f0154489c8700 /style.css | |
parent | 78b879b4426d3730acdf3f4737d37a2ee29cb023 (diff) | |
parent | 68760a48cb537e08e58014819bb8f83dbd30e831 (diff) | |
download | stable-diffusion-webui-gfx803-f3454b8a6b1ad8161bb69d49ae1f5f6416fe71ff.tar.gz stable-diffusion-webui-gfx803-f3454b8a6b1ad8161bb69d49ae1f5f6416fe71ff.tar.bz2 stable-diffusion-webui-gfx803-f3454b8a6b1ad8161bb69d49ae1f5f6416fe71ff.zip |
Merge pull request #3691 from xmodar/arabic
Revamped Arabic localization
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -522,18 +522,23 @@ If you change anything above, you need to make sure it is RTL compliant by just your changes through converters like https://cssjanus.github.io/ or https://rtlcss.com/.
Then, you will need to add the RTL counterpart only if needed in the rtl section below.*/
@media rtl {
- /* this part was manualy added */
+ /* this part was added manually */
:host {
direction: rtl;
}
- .output-html:has(.performance), .gr-text-input {
+ select, .file-preview, .gr-text-input, .output-html:has(.performance), #ti_progress {
direction: ltr;
}
+ #script_list > label > select,
+ #x_type > label > select,
+ #y_type > label > select {
+ direction: rtl;
+ }
.gr-radio, .gr-checkbox{
margin-left: 0.25em;
}
- /* this part was automatically generated with few manual modifications */
+ /* automatically generated with few manual modifications */
.performance .time {
margin-right: unset;
margin-left: 0;
|