mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 18:08:14 +08:00
dde19f36ac
* Add missing presence indicator to new room header DecoratedRoomAvatar doesn't match Figma styles so created a composable avatar wrapper Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add oobData to new room header avatar Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Simplify Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Simplify Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Improve coverage Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
55 lines
1.4 KiB
Plaintext
55 lines
1.4 KiB
Plaintext
/*
|
|
Copyright 2024 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.
|
|
*/
|
|
|
|
.mx_WithPresenceIndicator {
|
|
position: relative;
|
|
contain: content;
|
|
line-height: 0;
|
|
|
|
.mx_WithPresenceIndicator_icon {
|
|
position: absolute;
|
|
right: -2px;
|
|
bottom: -2px;
|
|
}
|
|
|
|
.mx_WithPresenceIndicator_icon::before {
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
right: 0;
|
|
bottom: 0;
|
|
position: absolute;
|
|
border: 2px solid var(--cpd-color-bg-canvas-default);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.mx_WithPresenceIndicator_icon_offline::before {
|
|
background-color: $presence-offline;
|
|
}
|
|
|
|
.mx_WithPresenceIndicator_icon_online::before {
|
|
background-color: $accent;
|
|
}
|
|
|
|
.mx_WithPresenceIndicator_icon_away::before {
|
|
background-color: $presence-away;
|
|
}
|
|
|
|
.mx_WithPresenceIndicator_icon_busy::before {
|
|
background-color: $presence-busy;
|
|
}
|
|
}
|