Avatar Pair: Extra Large

No notes defined.

<div class="sds-avatarPair -avatarPairXl">

    <div class="sds-avatar centeredBgi -avatarXl -avatarBase">

        <div class="sds-avatar__text">AG</div>

    </div>

    <span class="sds-dot -dotHighlight -dotBorder sds-avatarPair__badge">

        <span class="sr-only">status text</span>

    </span>
</div>
{% extends "@avatar-pair-frame" %}
{% block avatar %}
	{% render "@avatar--extra-large", {

	}, true %}
{% endblock %}
  • Content:
    /* variables specific to current element */
    
    $element-specific-variables: "";
    
    .#{$namespace}avatarPair {
    
    	/* Save root element context for easy access if nesting is needed */
    
    	$self: &;
    
    
    	/* properties of current element  + media queries */
    
    	position: relative;
    	display: inline-flex;
    
    
    	/* Pseudo Elements */
    
    	&::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 */
    
    	// avatarPair__badge
    	&__badge {
    		position: absolute;
    		top: 0;
    		right: 0;
    		pointer-events: none;
    	}
    
    
    	/* modifiers */
    
    	// avatarPair.-avatarPairLg
    	&.-avatarPairLg {
    
    		#{$self}__badge {
    			top: var(--comp-avatar-pair-large-badge-inset-h-r);
    			right: var(--comp-avatar-pair-large-badge-inset-v-t);
    		}
    
    	}
    
    	// avatarPair.-avatarPairXl
    	&.-avatarPairXl {
    
    		#{$self}__badge {
    			top: var(--comp-avatar-pair-extra-large-badge-inset-h-r);
    			right: var(--comp-avatar-pair-extra-large-badge-inset-v-t);
    		}
    
    	}
    
    	/* random parent element */
    	/*
    	*
    	*   Syntax : .randomParentElt & {}
    	*
    	*/
    
    	/* Pseudo Classes */
    
    	&:hover {
    		@media (hover: hover) {
    
    		}
    	}
    
    	&:focus {
    	}
    
    	&:active {
    	}
    
    	&:focus,
    	&:active {
    	}
    
    }
  • URL: /components/raw/avatar-pair/avatar-pair.scss
  • Filesystem Path: components/token-based/content/avatar-pair/avatar-pair.scss
  • Size: 1.3 KB