43 lines
1.1 KiB
SCSS
43 lines
1.1 KiB
SCSS
/*
|
|
Copyright 2017 Travis Ralston
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_MemberPresenceAvatar {
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.mx_MemberPresenceAvatar_status {
|
|
display: block;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 10px;
|
|
|
|
position: absolute;
|
|
bottom: -2px;
|
|
right: -3px;
|
|
}
|
|
|
|
.mx_MemberPresenceAvatar_status_online {
|
|
background-color: $presence-online;
|
|
}
|
|
|
|
.mx_MemberPresenceAvatar_status_unavailable {
|
|
background-color: $presence-unavailable;
|
|
}
|
|
|
|
.mx_MemberPresenceAvatar_status_offline {
|
|
background-color: $presence-offline;
|
|
}
|