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/_fieldset.scss

40 lines
568 B

.p-fieldset {
@apply border border-solid border-support-3 rounded-lg p-3.5;
&-legend {
@apply text-body-1 font-semibold px-2;
}
&-content {
@apply p-0;
}
.p-fieldset-legend {
@apply text-primary;
}
}
.p-fieldset.p-fieldset-toggleable {
.p-fieldset-legend {
@apply text-support-3;
a {
@apply outline-none;
.p-fieldset-toggler {
@apply mr-1;
}
&:focus,
&:hover,
&[aria-expanded="true"] {
@apply text-primary;
}
}
}
.p-fieldset-content {
@apply p-0;
}
}