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