2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2018-04-20 16:23:27 +08:00
|
|
|
Copyright 2018 Vector Creations Ltd
|
2018-04-12 07:23:35 +08: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-16 00:42:44 +08:00
|
|
|
.mx_ReplyChain {
|
2018-05-09 18:53:37 +08:00
|
|
|
margin-top: 0;
|
2018-04-20 16:23:27 +08:00
|
|
|
margin-left: 0;
|
2020-05-26 00:24:03 +08:00
|
|
|
margin-right: 0;
|
2019-10-13 20:08:50 +08:00
|
|
|
margin-bottom: 8px;
|
2021-07-22 20:38:57 +08:00
|
|
|
padding: 0 10px;
|
2021-11-11 21:37:29 +08:00
|
|
|
border-left: 2px solid $accent;
|
2021-07-22 19:10:25 +08:00
|
|
|
border-radius: 2px;
|
2020-04-10 19:39:16 +08:00
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
.mx_ReplyChain_show {
|
2022-01-07 17:40:53 +08:00
|
|
|
@mixin ButtonResetDefault;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $links;
|
|
|
|
}
|
2021-07-17 21:03:52 +08:00
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color1 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant1-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color2 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant2-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color3 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant3-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color4 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant4-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color5 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant5-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color6 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant6-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color7 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant7-color;
|
|
|
|
}
|
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
&.mx_ReplyChain_color8 {
|
2020-04-10 19:39:16 +08:00
|
|
|
border-left-color: $username-variant8-color;
|
|
|
|
}
|
2018-04-20 16:23:27 +08:00
|
|
|
}
|
2021-09-27 18:20:37 +08:00
|
|
|
|
2021-10-16 00:42:44 +08:00
|
|
|
.mx_ReplyChain--expanded {
|
2021-09-27 18:20:37 +08:00
|
|
|
.mx_EventTile_body {
|
|
|
|
display: block;
|
|
|
|
overflow-y: scroll !important;
|
|
|
|
}
|
|
|
|
.mx_EventTile_collapsedCodeBlock {
|
|
|
|
// !important needed due to .mx_ReplyTile .mx_EventTile_content .mx_EventTile_pre_container > pre
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
}
|