mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-29 10:05:03 +00:00
42 lines
935 B
SCSS
42 lines
935 B
SCSS
/// CHILL ENTITY RENDER BOX
|
|
.chill-entity {
|
|
|
|
/// PERSON
|
|
&.entity-person {
|
|
span.firstname,
|
|
span.lastname,
|
|
span.altname {}
|
|
}
|
|
|
|
/// SOCIAL-ISSUE AND SOCIAL-ACTION
|
|
&.entity-social-issue,
|
|
&.entity-social-action,
|
|
&.entity-event-theme {
|
|
margin-right: 0.3em;
|
|
font-size: 120%;
|
|
span.badge {
|
|
// for too long badge in a narrow inside block
|
|
text-align: initial;
|
|
margin-bottom: 0.2em;
|
|
> span {
|
|
white-space: normal;
|
|
}
|
|
}
|
|
}
|
|
&.entity-social-issue {
|
|
span.badge {
|
|
@include badge_social($social-issue-color);
|
|
}
|
|
}
|
|
&.entity-social-action {
|
|
span.badge {
|
|
@include badge_social($social-action-color);
|
|
}
|
|
}
|
|
&.entity-event-theme {
|
|
span.badge {
|
|
@include badge_social($event-theme-color);
|
|
}
|
|
}
|
|
}
|