mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
bb46846981
* Remove an obsolete override against .mx_EventTile_line - Move &[data-layout=bubble] under mx_ThreadView - Use variables for .mx_NewRoomIntro - Move the variable to BaseCard Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Use --ThreadView_group_spacing-end variable Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Apply GenericEventListSummary rules to ThreadView only This commit stops those declarations from being applied to TimelineCard, which is also applied with mx_ThreadPanel class name. Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Nesting - mx_GenericEventListSummary:not([data-layout=bubble]) Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * yarn run lint:style --fix Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
144 lines
3.7 KiB
SCSS
144 lines
3.7 KiB
SCSS
/*
|
|
Copyright 2021 - 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
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.
|
|
*/
|
|
|
|
.mx_TimelineCard {
|
|
.mx_TimelineCard__header {
|
|
margin-left: 6px;
|
|
|
|
span:first-of-type {
|
|
font-weight: 600;
|
|
font-size: 15px;
|
|
line-height: 18px;
|
|
color: $secondary-content;
|
|
}
|
|
}
|
|
|
|
.mx_BaseCard_header {
|
|
margin: 5px 0 9px 0;
|
|
|
|
.mx_BaseCard_close {
|
|
margin: 8px;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.mx_TimelineCard_timeline {
|
|
overflow: hidden;
|
|
position: relative; // offset parent for jump to bottom button
|
|
flex: 1;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.mx_NewRoomIntro {
|
|
margin-inline-start: var(--BaseCard_EventTile-spacing-horizontal);
|
|
margin-inline-end: var(--BaseCard_EventTile-spacing-horizontal);
|
|
}
|
|
|
|
.mx_EventTile_content {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.mx_EventTile:not([data-layout="bubble"]) {
|
|
.mx_EventTile_line {
|
|
padding: var(--BaseCard_EventTile_line-padding-block) var(--BaseCard_EventTile-spacing-horizontal);
|
|
|
|
.mx_EventTile_e2eIcon {
|
|
inset-inline-start: 8px;
|
|
}
|
|
}
|
|
|
|
.mx_DisambiguatedProfile,
|
|
.mx_ReactionsRow,
|
|
.mx_ThreadSummary {
|
|
margin-inline-start: var(--BaseCard_EventTile-spacing-horizontal);
|
|
}
|
|
|
|
.mx_ReactionsRow {
|
|
padding: 0;
|
|
|
|
// See margin setting of ReactionsRow on _EventTile.scss
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.mx_ThreadSummary {
|
|
margin-right: 0;
|
|
max-width: min(calc(100% - 36px), 600px);
|
|
}
|
|
|
|
.mx_EventTile_avatar {
|
|
position: absolute; // for IRC layout
|
|
top: 12px;
|
|
left: -3px;
|
|
}
|
|
|
|
.mx_MessageTimestamp {
|
|
position: absolute; // for modern layout and IRC layout
|
|
right: -4px;
|
|
left: auto;
|
|
}
|
|
|
|
.mx_EventTile_msgOption {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
&.mx_EventTile_info {
|
|
.mx_EventTile_line {
|
|
padding-left: var(--BaseCard_EventTile-spacing-horizontal);
|
|
}
|
|
|
|
.mx_EventTile_avatar {
|
|
left: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_CallEvent_wrapper {
|
|
justify-content: center;
|
|
margin: auto 5px;
|
|
.mx_CallEvent {
|
|
margin: 4px;
|
|
}
|
|
}
|
|
|
|
.mx_GenericEventListSummary:not([data-layout=bubble]) {
|
|
.mx_EventTile_line,
|
|
> .mx_GenericEventListSummary_unstyledList > .mx_EventTile_info .mx_EventTile_avatar ~ .mx_EventTile_line {
|
|
padding-inline-start: var(--BaseCard_EventTile-spacing-horizontal);
|
|
padding-inline-end: var(--BaseCard_EventTile-spacing-horizontal);
|
|
}
|
|
}
|
|
|
|
.mx_ReadReceiptGroup {
|
|
top: -6px;
|
|
}
|
|
|
|
.mx_WhoIsTypingTile {
|
|
margin-left: -12px; // undo padding on the message list
|
|
}
|
|
|
|
.mx_WhoIsTypingTile_avatars {
|
|
flex-basis: 48px; // 12 (padding on message list) + 36 (padding on event lines)
|
|
}
|
|
|
|
&.mx_BaseCard {
|
|
// For a chat timeline on the right panel when the widget is maximised
|
|
// TODO: rename ThreadPanel
|
|
&.mx_ThreadPanel {
|
|
padding-right: 8px; // .mx_RightPanel padding
|
|
}
|
|
}
|
|
}
|