element-web/res/css/views/rooms/_IRCLayout.scss

232 lines
6 KiB
SCSS
Raw Normal View History

2020-04-29 14:07:41 +00:00
/*
Copyright 2020 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.
*/
$icon-width: 14px;
$right-padding: 5px;
$irc-line-height: $font-18px;
2020-04-29 14:07:41 +00:00
.mx_IRCLayout {
--name-width: 70px;
2020-04-29 14:07:41 +00:00
line-height: $irc-line-height !important;
2020-04-29 14:07:41 +00:00
.mx_EventTile {
// timestamps are links which shouldn't be underlined
> a {
text-decoration: none;
min-width: $MessageTimestamp_width;
}
2020-04-29 14:07:41 +00:00
display: flex;
flex-direction: row;
align-items: flex-start;
2020-04-29 14:29:25 +00:00
padding-top: 0;
2020-04-29 14:07:41 +00:00
> * {
margin-right: $right-padding;
}
.mx_EventTile_msgOption {
2020-05-26 17:15:06 +00:00
order: 5;
2020-04-29 14:07:41 +00:00
flex-shrink: 0;
2020-06-10 14:21:36 +00:00
.mx_ReadReceiptGroup {
top: -0.3rem; // ($irc-line-height - avatar height) / 2
2020-06-10 14:21:36 +00:00
}
2020-04-29 14:07:41 +00:00
}
.mx_EventTile_line,
.mx_EventTile_reply {
display: flex;
flex-direction: column;
2020-04-29 14:07:41 +00:00
order: 3;
flex-grow: 1;
2020-05-26 16:39:39 +00:00
flex-shrink: 1;
min-width: 0;
2020-04-29 14:07:41 +00:00
}
.mx_EventTile_avatar {
2020-04-29 14:07:41 +00:00
order: 1;
position: relative;
flex-shrink: 0;
height: $irc-line-height;
2020-04-29 14:07:41 +00:00
display: flex;
align-items: center;
// Need to use important to override the js provided height and width values.
2020-06-11 09:36:52 +00:00
> .mx_BaseAvatar, > .mx_BaseAvatar > * {
height: $font-14px !important;
width: $font-14px !important;
font-size: $font-10px !important;
line-height: $font-15px !important;
2020-04-29 14:07:41 +00:00
}
}
.mx_DisambiguatedProfile {
width: var(--name-width);
margin-inline-end: 0; // override mx_EventTile > *
order: 2;
flex-shrink: 0;
> .mx_DisambiguatedProfile_displayName {
width: 100%;
text-align: end;
overflow: hidden;
text-overflow: ellipsis;
}
> .mx_DisambiguatedProfile_mxid {
visibility: collapse;
// Override the inherited margin.
margin-left: 0;
padding: 0 5px;
}
&:hover {
overflow: visible;
z-index: 10;
> .mx_DisambiguatedProfile_displayName {
overflow: visible;
display: inline;
background-color: $event-selected-color;
border-radius: 8px 0 0 8px;
padding-right: 8px;
}
> .mx_DisambiguatedProfile_mxid {
visibility: visible;
opacity: 1;
background-color: $event-selected-color;
}
}
}
2020-04-29 14:07:41 +00:00
.mx_MessageTimestamp {
text-align: right;
}
.mx_EventTile_e2eIcon {
2020-04-29 14:07:41 +00:00
padding: 0;
2020-06-11 10:44:11 +00:00
2020-05-26 17:15:06 +00:00
flex-shrink: 0;
flex-grow: 0;
2020-06-11 10:44:11 +00:00
height: $font-18px;
background-position: center;
2020-04-29 14:07:41 +00:00
}
.mx_EventTile_line {
.mx_EventTile_e2eIcon,
.mx_TextualEvent,
2021-05-20 14:39:25 +00:00
.mx_MTextBody {
display: inline-block;
// add a 1px padding top and bottom because our larger emoji font otherwise gets cropped by anti-zalgo
padding: 1px 0;
}
.mx_ReplyTile {
.mx_MTextBody {
display: -webkit-box; // Enable -webkit-line-clamp
}
}
2020-04-29 14:07:41 +00:00
}
.mx_EventTile_reply {
2020-05-26 17:15:06 +00:00
order: 4;
}
.mx_EditMessageComposer_buttons {
position: relative;
}
2020-04-29 14:07:41 +00:00
}
.mx_EventTile_emote {
.mx_EventTile_avatar {
margin-left: calc(var(--name-width) + $icon-width + $right-padding);
}
}
blockquote {
margin: 0;
}
Move style rules of GenericEventListSummary from _EventBubbleTile.scss to _GenericEventListSummary.scss (#8713) * Move declarations of mx_GenericEventListSummary to _GenericEventListSummary.scss Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Move declarations of mx_GenericEventListSummary[data-expanded=false] to _GenericEventListSummary.scss Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Move declarations of mx_GenericEventListSummary[data-expanded=true] to _GenericEventListSummary.scss Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * de-nestify style rules Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Remove a padding declaration for _EventBubbleTile.scss to set correct cascading order Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * GenericEventListSummary_toggle for ':not([data-layout=bubble])' Stop setting margin values as default ones Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * GenericEventListSummary_avatars for ':not([data-layout=bubble])' Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Extract flexbox declarations into _GenericEventListSummary.scss Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Move declarations of '&[data-layout=bubble]' up Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Extract background color into _GenericEventListSummary.scss Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Merge style rules of background of EventTile_bad Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Move .mx_GenericEventListSummary_avatars block from _IRCLayout.scsss to _GenericEventListSummary.scss Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * de-nestify style rules Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Stop using :not() pseudo class Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
2022-06-28 13:05:19 +00:00
.mx_GenericEventListSummary > .mx_EventTile_line {
padding-left: calc(var(--name-width) + $icon-width + $MessageTimestamp_width + 3 * $right-padding); // 15 px of padding
2020-04-29 14:07:41 +00:00
}
.mx_EventTile.mx_EventTile_info {
.mx_EventTile_avatar {
left: calc(var(--name-width) + 10px + $icon-width);
2020-04-29 14:07:41 +00:00
top: 0;
}
.mx_EventTile_line {
left: calc(var(--name-width) + 10px + $icon-width);
2020-04-29 14:07:41 +00:00
}
.mx_TextualEvent {
line-height: $irc-line-height;
2020-04-29 14:07:41 +00:00
}
}
2020-05-04 20:53:48 +00:00
// Suppress highlight thing from the normal Layout.
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line,
.mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line,
.mx_EventTile:hover.mx_EventTile_unknown .mx_EventTile_line {
padding-left: 0;
border-left: 0;
}
.mx_ReplyChain {
margin: 0;
.mx_DisambiguatedProfile {
order: unset;
width: unset;
background: transparent;
}
.mx_EventTile_emote {
> .mx_EventTile_avatar {
margin-left: initial;
}
}
.mx_MessageTimestamp {
width: initial;
}
/**
* adding the icon back in the document flow
* if it's not present, there's no unwanted wasted space
*/
.mx_EventTile_e2eIcon {
position: relative;
order: -1;
}
}
.mx_ProfileResizer {
position: absolute;
height: 100%;
width: 15px;
left: calc(80px + var(--name-width));
cursor: col-resize;
z-index: 100;
}
2020-04-29 14:07:41 +00:00
}