@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
74 lines (60 loc) • 1.49 kB
CSS
.AvatarGroup-item {
border-radius: var(--border-radius-full);
position: relative;
margin-right: calc(var(--spacing-05) * -1);
}
.AvatarGroup-item--square {
border-radius: var(--border-radius-10);
}
.AvatarGroup-item--regular {
height: var(--spacing-80);
}
.AvatarGroup-item--tiny {
height: var(--spacing-60);
}
.AvatarGroup-Popper {
overflow-y: auto;
box-sizing: border-box;
}
.AvatarGroup-TextWrapper {
display: flex;
flex-direction: column;
align-items: flex-start;
overflow-y: auto;
}
.AvatarCount-wrapper {
border-radius: var(--border-radius-full);
position: relative;
display: flex;
align-items: center;
}
.AvatarCount-wrapper:focus,
.AvatarCount-wrapper:focus-visible {
outline: 3px solid var(--primary-shadow);
outline-offset: 3px;
}
.AvatarGroup-inputWrapper {
border-bottom: var(--border-width-2-5) solid var(--secondary-dark);
}
.AvatarGroup-inputWrapper:focus-within {
border-bottom: var(--border-width-2-5) solid var(--primary);
}
.AvatarGroup-input {
min-width: unset ;
background: transparent;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
height: calc(var(--spacing-80) + var(--spacing-10)) ;
}
.AvatarGroup-input,
.AvatarGroup-input:focus-within {
border: unset ;
box-shadow: none ;
}
.AvatarGroup-input:hover {
background-color: var(--secondary-lightest);
}
.AvatarGroup-listItem--disabled {
cursor: not-allowed;
pointer-events: auto ;
}