diff options
author | xmodar <modar.alfadly@gmail.com> | 2022-10-26 20:56:11 +0000 |
---|---|---|
committer | xmodar <modar.alfadly@gmail.com> | 2022-10-26 20:57:19 +0000 |
commit | 3de036514138d7cdcba9729c975f1683a8e06b16 (patch) | |
tree | ce4c57f93e8adef880ab69040696566592748f8e /style.css | |
parent | 54cdd4e1f4168697f32882c0b33842e767b66884 (diff) | |
download | stable-diffusion-webui-gfx803-3de036514138d7cdcba9729c975f1683a8e06b16.tar.gz stable-diffusion-webui-gfx803-3de036514138d7cdcba9729c975f1683a8e06b16.tar.bz2 stable-diffusion-webui-gfx803-3de036514138d7cdcba9729c975f1683a8e06b16.zip |
Add id access to scripts list in the css
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -526,19 +526,14 @@ Then, you will need to add the RTL counterpart only if needed in the rtl section :host {
direction: rtl;
}
- .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 {
+ select, .file-preview, .gr-text-input, .output-html:has(.performance) {
direction: ltr;
}
+ #script_list > label > select,
+ #x_type > label > select,
+ #y_type > label > select {
+ direction: rtl;
+ }
.gr-radio, .gr-checkbox{
margin-left: 0.25em;
}
|