mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 04:06:44 +02:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
40 lines
932 B
Plaintext
40 lines
932 B
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_LiveContentSummary {
|
|
color: $secondary-content;
|
|
|
|
.mx_LiveContentSummary_text {
|
|
svg {
|
|
display: inline-block;
|
|
vertical-align: text-bottom;
|
|
color: $secondary-content;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
&.mx_LiveContentSummary_text_active {
|
|
color: $accent;
|
|
|
|
svg {
|
|
color: $accent;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_LiveContentSummary_participants svg {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: $secondary-content;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 2px;
|
|
}
|
|
}
|