Commit 3de03651 authored by xmodar's avatar xmodar
Browse files

Add id access to scripts list in the css

parent 54cdd4e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@ class ScriptRunner:
            with gr.Group():
                create_script_ui(script, inputs, inputs_alwayson)

        dropdown = gr.Dropdown(label="Script", choices=["None"] + self.titles, value="None", type="index")
        dropdown = gr.Dropdown(label="Script", elem_id="script_list", choices=["None"] + self.titles, value="None", type="index")
        dropdown.save_to_config = True
        inputs[0] = dropdown

+6 −11
Original line number Diff line number Diff line
@@ -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;
    }