Spaces:
Paused
Paused
/* Container for the Evaluate component */ | |
.evaluate-container { | |
display: flex; | |
flex-direction: column; | |
gap: 16px; | |
padding: 16px; | |
} | |
/* Form Control */ | |
.evaluate-form-control { | |
width: 100%; | |
} | |
/* Input label */ | |
.evaluate-form-control .MuiInputLabel-root { | |
color: #26a8dc ; | |
} | |
.evaluate-form-control .MuiInputLabel-root.Mui-focused { | |
color: #26a8dc ; | |
} | |
/* Dropdown arrow icon */ | |
.evaluate-form-control .MuiSelect-icon { | |
color: #26a8dc ; | |
} | |
/* Select’s OutlinedInput */ | |
.evaluate-outlined-input { | |
background-color: transparent ; | |
color: #26a8dc ; | |
} | |
/* Override the default notched outline to have a #ddd border */ | |
.evaluate-outlined-input .MuiOutlinedInput-notchedOutline { | |
border-color: #26a8dc ; | |
} | |
/* Container for the rendered chips */ | |
.chip-container { | |
display: flex ; | |
flex-wrap: wrap ; | |
gap: 0.65rem ; | |
} | |
/* Chips */ | |
.evaluate-chip { | |
background-color: #b70303 ; | |
color: #fff ; | |
border-radius: 0.5rem ; | |
} | |
/* Remove background from chip close button and make its icon #ddd */ | |
.evaluate-chip .MuiChip-deleteIcon { | |
background: none ; | |
color: #ddd ; | |
} | |
/* Styling for the dropdown menu */ | |
.evaluate-menu { | |
background-color: #2b2b2b ; | |
border: 0.01rem solid #26a8dc ; | |
color: #ddd ; | |
} | |
/* Dropdown menu item hover effect: lighter shade */ | |
.evaluate-menu .MuiMenuItem-root:hover { | |
background-color: #3b3b3b ; | |
} | |
/* Dropdown menu item selected effect */ | |
.evaluate-menu .MuiMenuItem-root.Mui-selected { | |
background-color: #4b4b4b ; | |
} | |
/* Evaluate button styling */ | |
.evaluate-button { | |
background-color: #FFC300 ; | |
color: #2b2b2b ; | |
width: auto ; | |
padding: 6px 16px ; | |
align-self: flex-start ; | |
} | |
.evaluate-button:hover { | |
background-color: #b07508 ; | |
color: #ddd ; | |
} | |
/* No metrics message */ | |
.no-metrics-message { | |
text-align: center; | |
color: red; | |
} | |
/* Spinner styling */ | |
.custom-spinner { | |
width: 1.35rem; | |
height: 1.35rem; | |
border: 3px solid #3b7bdc; /* Main Spinner */ | |
border-top: 3px solid #434343; /* Rotating path */ | |
border-radius: 50%; | |
animation: spin 0.9s linear infinite; | |
} | |
/* Spinner animation */ | |
@keyframes spin { | |
0% { | |
transform: rotate(0deg); | |
} | |
100% { | |
transform: rotate(360deg); | |
} | |
} |