mirror of https://github.com/vector-im/riot-web
74 lines
2.0 KiB
SCSS
74 lines
2.0 KiB
SCSS
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
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.
|
|
*/
|
|
|
|
// XXX: We shouldn't be using TemporaryTile anywhere - delete it.
|
|
.mx_DecoratedRoomAvatar, .mx_TemporaryTile {
|
|
position: relative;
|
|
|
|
&.mx_DecoratedRoomAvatar_cutout .mx_BaseAvatar {
|
|
mask-image: url('$(res)/img/element-icons/roomlist/decorated-avatar-mask.svg');
|
|
mask-position: center;
|
|
mask-size: contain;
|
|
mask-repeat: no-repeat;
|
|
}
|
|
|
|
.mx_DecoratedRoomAvatar_icon {
|
|
position: absolute;
|
|
bottom: -2px;
|
|
right: -2px;
|
|
margin: 4px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.mx_DecoratedRoomAvatar_icon::before {
|
|
content: '';
|
|
width: 8px;
|
|
height: 8px;
|
|
position: absolute;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.mx_DecoratedRoomAvatar_icon_globe::before {
|
|
mask-position: center;
|
|
mask-size: contain;
|
|
mask-repeat: no-repeat;
|
|
background: $secondary-fg-color;
|
|
mask-image: url('$(res)/img/globe.svg');
|
|
}
|
|
|
|
.mx_DecoratedRoomAvatar_icon_offline::before {
|
|
background-color: $presence-offline;
|
|
}
|
|
|
|
.mx_DecoratedRoomAvatar_icon_online::before {
|
|
background-color: $presence-online;
|
|
}
|
|
|
|
.mx_DecoratedRoomAvatar_icon_away::before {
|
|
background-color: $presence-away;
|
|
}
|
|
|
|
.mx_NotificationBadge, .mx_RoomTile_badgeContainer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 18px;
|
|
width: 18px;
|
|
}
|
|
}
|