No notes defined.
<div class="sds-emptyState">
<span class="sds-emptyState__icon sds-icon sds-icon-history-l" aria-hidden="true"></span>
<div class="sds-emptyState__textBlock sds-stackXxs">
<p class="sds-emptyState__text sds-textSemiBold">Aucun résultat trouvé</p>
</div>
</div>
{% if sunken %}
<div class="{{ namespace }}box -boxInsetLg -boxSunken">
{% endif %}
<div class="{{ namespace }}emptyState{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
{% if icon %}
<span class="{{ namespace }}emptyState__icon {{ namespace }}icon {{ namespace }}{{ icon }}" aria-hidden="true"></span>
{% else %}
{% endif %}
<div class="{{ namespace }}emptyState__textBlock {{ namespace }}stackXxs">
{% if text %}
<p class="{{ namespace }}emptyState__text {{ namespace }}textSemiBold{% if textBodyLg %} {{ namespace }}textBodyLg{% endif %}">{{ text }}</p>
{% endif %}
{% if subText %}
<p class="{{ namespace }}emptyState__text {{ namespace }}textSemiBold">{{ subText }}</p>
{% endif %}
</div>
{% if button %}
{% render "@btn-secondary--icon-left",{
classes: btnClasses,
icon: btnIcon,
text: btnText
},true %}
{% endif %}
</div>
{% if sunken %}
</div>
{% endif %}
/* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}emptyState {
/* Save root element context for easy access if nesting is needed */
$self: &;
/* properties of current element + media queries */
/* Pseudo Elements */
display: flex !important;
flex-direction: column;
align-items: center;
justify-content: center;
@include custom-prop-fallback("color","comp-empty-state-title-text-color","true","true");
@include custom-prop-fallback("gap","ui-space-stack-static-1000");
flex-grow: 1;
&::before {
}
&::after {
}
/*
Include elements that are linked to the current element but have to reside at the root level of the stylesheet
(e.g: keyframes)
*/
@at-root {
}
/* children - write selector in full in comments in order to facilitate search */
&__icon {
// follows same logic as parent
&::before {
font-size: map-deep-get($token-sizes-unit-map, "40");
}
}
&__text {
text-align: center;
max-width: 50ch;
}
/* modifiers */
// emptyState -big
// emptyState -emptyStateLg
&.-big,
&.-emptyStateLg {
// follows same logic as base element
@include custom-prop-fallback("gap","ui-space-stack-static-1500");
#{$self}__icon {
// follows same logic as parent
&::before {
font-size: map-deep-get($token-sizes-unit-map, "64");
}
}
}
&.-bgSecondary06 {
background-color: map-deep-get($token-color-brand-map, "secondary", "06");
}
&.-noPadding {
padding: 0;
}
&.-verticalSpacingBig {
padding-top: map-deep-get($token-spacer-unit-map, "64");
padding-bottom: map-deep-get($token-spacer-unit-map, "64");
@include media-breakpoint-up(lg) {
padding-top: map-deep-get($token-spacer-unit-map, "64") * 2;
padding-bottom: map-deep-get($token-spacer-unit-map, "64") * 2;
}
}
/* random parent element */
/*
*
* Syntax : .randomParentElt & {}
*
*/
/* Pseudo Classes */
&:hover {
@media (hover: hover) {
}
}
&:focus {
}
&:active {
}
&:focus,
&:active {
}
}