diff options
author | xmodar <modar.alfadly@gmail.com> | 2022-10-26 19:49:45 +0000 |
---|---|---|
committer | xmodar <modar.alfadly@gmail.com> | 2022-10-26 19:49:45 +0000 |
commit | 54cdd4e1f4168697f32882c0b33842e767b66884 (patch) | |
tree | 948521dbd4c9d7577d507adcb60efca27522c78b /style.css | |
parent | 53b48d93fb9acd66ad631129afd837049449a76b (diff) | |
download | stable-diffusion-webui-gfx803-54cdd4e1f4168697f32882c0b33842e767b66884.tar.gz stable-diffusion-webui-gfx803-54cdd4e1f4168697f32882c0b33842e767b66884.tar.bz2 stable-diffusion-webui-gfx803-54cdd4e1f4168697f32882c0b33842e767b66884.zip |
Add LTR checkpoint lists and updated Arabic localization
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -522,18 +522,28 @@ 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 {
+ .file-preview,
+ .gr-text-input,
+ .output-html:has(.performance),
+ #txt2img_style_index > label > select,
+ #txt2img_style2_index > label > select,
+ #img2img_style_index > label > select,
+ #img2img_style2_index > label > select,
+ #setting_sd_model_checkpoint > label > select,
+ #modelmerger_primary_model_name > label > select,
+ #modelmerger_secondary_model_name > label > select,
+ #modelmerger_tertiary_model_name > label > select {
direction: ltr;
}
.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;
|