Files
element-web/res/css/views/elements/_RichText.scss
T

128 lines
2.9 KiB
SCSS
Raw Normal View History

// XXX: bleurgh, what is this? These classes totally break the component
// naming scheme; it's completely unclear where or how they're being used
// --Matthew
.mx_UserPill,
.mx_RoomPill,
2018-06-19 11:53:17 +01:00
.mx_GroupPill,
.mx_AtRoomPill {
2020-04-03 17:53:49 +01:00
display: inline-flex;
align-items: center;
vertical-align: middle;
border-radius: $font-16px;
2020-04-14 17:32:24 +01:00
line-height: $font-15px;
2020-04-03 17:53:49 +01:00
padding-left: 0;
}
a.mx_Pill {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
max-width: 100%;
2020-04-03 17:53:49 +01:00
}
.mx_Pill {
2020-04-14 17:32:24 +01:00
padding: $font-1px;
padding-right: 0.4em;
2020-04-29 10:57:35 +01:00
vertical-align: text-top;
line-height: $font-17px;
}
2020-04-14 17:07:59 +01:00
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_GroupPill,
.mx_GroupPill {
color: $accent-fg-color;
2021-11-29 13:52:09 +01:00
background-color: $rte-room-pill-color;
2020-04-14 17:07:59 +01:00
}
2019-01-07 09:13:01 -06:00
/* More specific to override `.markdown-body a` text-decoration */
.mx_EventTile_content .markdown-body a.mx_Pill {
text-decoration: none;
}
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_UserPill,
.mx_UserPill {
2021-08-12 11:27:12 +02:00
color: $primary-content;
background-color: $other-user-pill-bg-color;
2020-04-07 15:23:19 +01:00
}
2018-05-14 03:02:12 +01:00
.mx_UserPill_selected {
2021-11-11 14:37:29 +01:00
background-color: $accent !important;
2018-05-14 03:02:12 +01:00
}
2019-01-07 09:18:24 -06:00
/* More specific to override `.markdown-body a` color */
.mx_EventTile_highlight .mx_EventTile_content .markdown-body a.mx_UserPill_me,
2019-01-07 09:18:24 -06:00
.mx_EventTile_content .markdown-body a.mx_AtRoomPill,
.mx_EventTile_content .mx_AtRoomPill,
.mx_MessageComposer_input .mx_AtRoomPill {
color: $accent-fg-color;
2021-11-11 14:37:29 +01:00
background-color: $alert;
}
/* More specific to override `.markdown-body a` color */
.mx_EventTile_content .markdown-body a.mx_RoomPill,
2018-06-22 14:36:29 +01:00
.mx_EventTile_content .markdown-body a.mx_GroupPill,
.mx_RoomPill,
.mx_GroupPill {
color: $accent-fg-color;
background-color: $rte-room-pill-color;
2018-06-22 14:36:29 +01:00
}
2019-07-10 16:55:03 +01:00
.mx_EventTile_body .mx_UserPill,
.mx_EventTile_body .mx_RoomPill,
.mx_EventTile_body .mx_GroupPill {
cursor: pointer;
}
.mx_UserPill .mx_BaseAvatar,
.mx_RoomPill .mx_BaseAvatar,
2018-06-19 11:53:17 +01:00
.mx_GroupPill .mx_BaseAvatar,
.mx_AtRoomPill .mx_BaseAvatar {
position: relative;
2020-04-03 17:53:49 +01:00
display: inline-flex;
align-items: center;
border-radius: 10rem;
margin-right: 0.24rem;
pointer-events: none;
}
2022-01-24 07:53:05 -05:00
.mx_Emoji {
font-size: 1.8rem;
vertical-align: bottom;
}
.mx_Markdown_BOLD {
font-weight: bold;
}
.mx_Markdown_ITALIC {
font-style: italic;
2019-07-09 18:15:10 +01:00
/*
2019-01-31 11:51:26 +01:00
// interestingly, *not* using the explicit italic font
// variant seems yield better results.
2019-01-16 12:53:46 +00:00
// compensate for Nunito italics being terrible
// https://github.com/google/fonts/issues/1726
transform: skewX(-14deg);
display: inline-block;
2019-07-09 18:15:10 +01:00
*/
}
.mx_Markdown_CODE {
padding: .2em 0;
margin: 0;
font-size: 85%;
background-color: $rte-code-bg-color;
border-radius: 3px;
}
.mx_Markdown_HR {
display: block;
background: $rte-bg-color;
}
.mx_Markdown_STRIKETHROUGH {
text-decoration: line-through;
}