Update nav tab badges, fix several call tabs issues
This commit is contained in:
parent
ed6ffb695a
commit
9c7dc22a23
43 changed files with 1095 additions and 936 deletions
|
@ -6364,212 +6364,6 @@ button.module-image__border-overlay:focus {
|
|||
}
|
||||
}
|
||||
|
||||
// Module: Avatar Popup
|
||||
|
||||
.module-avatar-popup {
|
||||
min-width: 240px;
|
||||
max-width: 320px;
|
||||
|
||||
border-radius: 4px;
|
||||
padding-bottom: 4px;
|
||||
|
||||
@include popper-shadow;
|
||||
|
||||
@include light-theme {
|
||||
color: $color-gray-90;
|
||||
background-color: $color-white;
|
||||
}
|
||||
@include dark-theme {
|
||||
color: $color-gray-05;
|
||||
background-color: $color-gray-75;
|
||||
}
|
||||
}
|
||||
|
||||
.module-avatar-popup__profile {
|
||||
@include button-reset();
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
|
||||
@include light-theme {
|
||||
&:hover {
|
||||
background-color: $color-gray-05;
|
||||
}
|
||||
}
|
||||
@include dark-theme {
|
||||
&:hover {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
}
|
||||
@include keyboard-mode {
|
||||
&:hover {
|
||||
background-color: inherit;
|
||||
}
|
||||
&:focus {
|
||||
background-color: $color-gray-05;
|
||||
}
|
||||
}
|
||||
@include dark-keyboard-mode {
|
||||
&:hover {
|
||||
background-color: inherit;
|
||||
}
|
||||
&:focus {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.module-avatar-popup__profile {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.module-avatar-popup__profile__text {
|
||||
margin-inline-start: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.module-avatar-popup__profile__name {
|
||||
@include font-body-1-bold;
|
||||
}
|
||||
.module-avatar-popup__profile__number {
|
||||
@include font-subtitle;
|
||||
|
||||
@include light-theme {
|
||||
color: $color-gray-60;
|
||||
}
|
||||
@include dark-theme {
|
||||
color: $color-gray-25;
|
||||
}
|
||||
}
|
||||
|
||||
.module-avatar-popup__profile__name,
|
||||
.module-avatar-popup__profile__number {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.module-avatar-popup__divider {
|
||||
border: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
margin-bottom: 6px;
|
||||
|
||||
@include light-theme {
|
||||
background-color: $color-gray-15;
|
||||
}
|
||||
@include dark-theme {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
}
|
||||
|
||||
.module-avatar-popup__item {
|
||||
@include font-body-2;
|
||||
@include button-reset;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
width: 100%;
|
||||
height: 32px;
|
||||
padding: 6px;
|
||||
|
||||
@include light-theme {
|
||||
&:hover {
|
||||
background-color: $color-gray-05;
|
||||
}
|
||||
}
|
||||
@include keyboard-mode {
|
||||
&:hover {
|
||||
background-color: inherit;
|
||||
}
|
||||
&:focus {
|
||||
background-color: $color-gray-05;
|
||||
}
|
||||
}
|
||||
@include dark-theme {
|
||||
&:hover {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
}
|
||||
@include dark-keyboard-mode {
|
||||
&:hover {
|
||||
background-color: inherit;
|
||||
}
|
||||
&:focus {
|
||||
background-color: $color-gray-60;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.module-avatar-popup__item__icon {
|
||||
margin-inline-start: 6px;
|
||||
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
|
||||
&--update {
|
||||
@include light-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v3/refresh/refresh.svg',
|
||||
$color-gray-75
|
||||
);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v3/refresh/refresh.svg',
|
||||
$color-gray-15
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
.module-avatar-popup__item__icon-settings {
|
||||
@include light-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v3/settings/settings-compact.svg',
|
||||
$color-gray-75
|
||||
);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v3/settings/settings-compact.svg',
|
||||
$color-gray-15
|
||||
);
|
||||
}
|
||||
}
|
||||
.module-avatar-popup__item__icon-archive {
|
||||
@include light-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v3/archive/archive-compact.svg',
|
||||
$color-gray-75
|
||||
);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v3/archive/archive-compact.svg',
|
||||
$color-gray-15
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
.module-avatar-popup__item__text {
|
||||
flex-grow: 1;
|
||||
margin-inline-start: 8px;
|
||||
}
|
||||
|
||||
.module-avatar-popup__item--badge {
|
||||
background: $color-ultramarine;
|
||||
border-radius: 100%;
|
||||
height: 8px;
|
||||
margin-inline-end: 10px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
/* Calling: Device Selection */
|
||||
|
||||
.module-calling-device-selection {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue