mirror of https://github.com/jitsi/jitsi-meet
parent
a6b55b676c
commit
c25fb702c2
@ -1,50 +0,0 @@ |
||||
.avatar { |
||||
background-color: #AAA; |
||||
border-radius: 50%; |
||||
color: rgba(255, 255, 255, 1); |
||||
font-weight: 100; |
||||
object-fit: cover; |
||||
|
||||
&.avatar-small { |
||||
height: 28px !important; |
||||
width: 28px !important; |
||||
} |
||||
|
||||
&.avatar-xsmall { |
||||
height: 16px !important; |
||||
width: 16px !important; |
||||
} |
||||
|
||||
.jitsi-icon { |
||||
transform: translateY(50%); |
||||
} |
||||
} |
||||
|
||||
.avatar-svg { |
||||
height: 100%; |
||||
width: 100%; |
||||
} |
||||
|
||||
.avatar-badge { |
||||
position: relative; |
||||
|
||||
&-available::after { |
||||
@include avatarBadge; |
||||
background-color: $presence-available; |
||||
} |
||||
|
||||
&-away::after { |
||||
@include avatarBadge; |
||||
background-color: $presence-away; |
||||
} |
||||
|
||||
&-busy::after { |
||||
@include avatarBadge; |
||||
background-color: $presence-busy; |
||||
} |
||||
|
||||
&-idle::after { |
||||
@include avatarBadge; |
||||
background-color: $presence-idle; |
||||
} |
||||
} |
@ -0,0 +1,5 @@ |
||||
// Colors for avatar status badge
|
||||
export const PRESENCE_AVAILABLE_COLOR = 'rgb(110, 176, 5)'; |
||||
export const PRESENCE_AWAY_COLOR = 'rgb(250, 201, 20)'; |
||||
export const PRESENCE_BUSY_COLOR = 'rgb(233, 0, 27)'; |
||||
export const PRESENCE_IDLE_COLOR = 'rgb(172, 172, 172)'; |
Loading…
Reference in new issue