2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2018-04-20 10:23:27 +02:00
|
|
|
Copyright 2018 Vector Creations Ltd
|
2018-04-12 01:23:35 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
.mx_ReplyChain {
|
2024-01-02 19:56:39 +01:00
|
|
|
margin: 0; /* Reset default blockquote margin */
|
2023-06-06 16:03:52 +02:00
|
|
|
padding-left: 10px;
|
|
|
|
border-left: 2px solid var(--username-color);
|
|
|
|
border-radius: 2px;
|
2020-04-10 13:39:16 +02:00
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
.mx_ReplyChain_show {
|
2022-05-31 23:52:12 +02:00
|
|
|
&.mx_AccessibleButton_kind_link_inline {
|
2022-07-27 15:39:29 +02:00
|
|
|
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;
|
2024-03-05 05:25:47 +01:00
|
|
|
font-weight: var(--cpd-font-weight-normal);
|
|
|
|
text-decoration: inherit;
|
2022-01-07 10:40:53 +01:00
|
|
|
|
2022-05-31 23:52:12 +02:00
|
|
|
&:hover {
|
2022-11-29 08:49:43 +01:00
|
|
|
color: $primary-content;
|
2022-05-31 23:52:12 +02:00
|
|
|
}
|
2022-01-07 10:40:53 +01:00
|
|
|
}
|
2021-07-17 15:03:52 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
&.mx_ReplyChain_color1 {
|
2022-11-29 08:49:43 +01:00
|
|
|
--username-color: $username-variant1-color;
|
2020-04-10 13:39:16 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
&.mx_ReplyChain_color2 {
|
2022-11-29 08:49:43 +01:00
|
|
|
--username-color: $username-variant2-color;
|
2020-04-10 13:39:16 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
&.mx_ReplyChain_color3 {
|
2022-11-29 08:49:43 +01:00
|
|
|
--username-color: $username-variant3-color;
|
2020-04-10 13:39:16 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
&.mx_ReplyChain_color4 {
|
2022-11-29 08:49:43 +01:00
|
|
|
--username-color: $username-variant4-color;
|
2020-04-10 13:39:16 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
&.mx_ReplyChain_color5 {
|
2022-11-29 08:49:43 +01:00
|
|
|
--username-color: $username-variant5-color;
|
2020-04-10 13:39:16 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:42:44 +02:00
|
|
|
&.mx_ReplyChain_color6 {
|
2022-11-29 08:49:43 +01:00
|
|
|
--username-color: $username-variant6-color;
|
2020-04-10 13:39:16 +02:00
|
|
|
}
|
2018-04-20 10:23:27 +02:00
|
|
|
}
|