Files
element-web/res/css/views/elements/_ReplyChain.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.3 KiB
Plaintext
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2018 Vector Creations Ltd
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
.mx_ReplyChain {
2024-01-02 18:56:39 +00:00
margin: 0; /* Reset default blockquote margin */
padding-left: 10px;
border-left: 2px solid var(--username-color);
border-radius: 2px;
2020-04-10 14:39:16 +03:00
.mx_ReplyChain_show {
&.mx_AccessibleButton_kind_link_inline {
white-space: nowrap; /* Enforce 'In reply to' to be a single line */
2022-11-29 08:49:43 +01:00
color: $secondary-content;
transition: color ease 0.15s;
font-weight: var(--cpd-font-weight-regular);
text-decoration: inherit;
2022-01-07 10:40:53 +01:00
&:hover {
2022-11-29 08:49:43 +01:00
color: $primary-content;
}
2022-01-07 10:40:53 +01:00
}
2021-07-17 15:03:52 +02:00
}
&.mx_ReplyChain_color1 {
2022-11-29 08:49:43 +01:00
--username-color: $username-variant1-color;
2020-04-10 14:39:16 +03:00
}
&.mx_ReplyChain_color2 {
2022-11-29 08:49:43 +01:00
--username-color: $username-variant2-color;
2020-04-10 14:39:16 +03:00
}
&.mx_ReplyChain_color3 {
2022-11-29 08:49:43 +01:00
--username-color: $username-variant3-color;
2020-04-10 14:39:16 +03:00
}
&.mx_ReplyChain_color4 {
2022-11-29 08:49:43 +01:00
--username-color: $username-variant4-color;
2020-04-10 14:39:16 +03:00
}
&.mx_ReplyChain_color5 {
2022-11-29 08:49:43 +01:00
--username-color: $username-variant5-color;
2020-04-10 14:39:16 +03:00
}
&.mx_ReplyChain_color6 {
2022-11-29 08:49:43 +01:00
--username-color: $username-variant6-color;
2020-04-10 14:39:16 +03:00
}
}