again / ui /styles.py
Beam2513's picture
Upload 127 files
798602c verified
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;
}
"""