| DATA_SELECTOR_CSS = """ | |
| /* Variables / data-related UI elements */ | |
| .data-selector li { | |
| color: orange; | |
| } | |
| /* Dropdown labels / info */ | |
| #custom_dropdown [data-testid="block-info"] { | |
| color: orange; | |
| } | |
| /* Selected value text */ | |
| #custom_dropdown input { | |
| color: orange; | |
| } | |
| /* Dropdown arrow */ | |
| #custom_dropdown .dropdown-arrow path { | |
| fill: orange; | |
| } | |
| /* Multiselect chips */ | |
| #custom_dropdown .svelte-1scun43 { | |
| color: orange; | |
| } | |
| /* Layout helpers */ | |
| #row_centered { | |
| align-items: center; | |
| } | |
| #column_centered { | |
| align-items: center; | |
| } | |
| /* Buttons */ | |
| #run_button { | |
| width: 33%; | |
| justify-content: center; | |
| } | |
| """ | |