File size: 674 Bytes
798602c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 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;
}
"""
|