Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/css/scss/atoms/_dropdown.scss

46 lines
696 B

select.p-dropdown {
@apply px-4 py-3;
}
.p-dropdown {
@apply bg-white border border-solid border-gray-50 rounded-lg transition;
&:not(.p-disabled) {
@apply hover:border-primary focus:border-primary;
&.p-focus {
@apply border-primary;
}
}
.p-dropdown-label {
@apply border-none text-body-2;
&:enabled {
&:focus {
}
}
&.p-placeholder {
@apply text-body-2;
}
}
.p-dropdown-trigger {
@apply rounded-r-lg w-12;
}
.p-dropdown-clear-icon {
@apply right-3;
}
&.p-dropdown-clearable {
.p-dropdown-label {
@apply pr-10;
}
}
&.p-invalid.p-component {
@apply border-error text-error;
}
}