Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions res/css/views/messages/_ReactionsRowButton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,11 @@ limitations under the License.
.mx_ReactionsRowButton {
display: inline-flex;
line-height: $font-20px;
margin-right: 6px;
padding: 1px 6px;
border: 1px solid $message-action-bar-border-color;
border-radius: 10px;
background-color: $header-panel-bg-color;
cursor: pointer;
user-select: none;
vertical-align: middle;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vertical-align property only applies to inline-level elements.


&:hover {
border-color: $reaction-row-button-hover-border-color;
Expand Down
5 changes: 1 addition & 4 deletions res/css/views/right_panel/_TimelineCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@ limitations under the License.
}

.mx_ReactionsRow {
padding: 0;

// See margin setting of ReactionsRow on _EventTile.scss
margin-right: 8px;
margin-inline-end: $spacing-8; // See: var(--ThreadView_group_spacing-end) for ReactionsRow on _EventTile.scss
}

.mx_ThreadSummary {
Expand Down
27 changes: 14 additions & 13 deletions res/css/views/rooms/_EventBubbleTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ limitations under the License.
.mx_EventTile[data-layout=bubble] {
--EventTile_bubble-margin-inline-start: 49px;
--EventTile_bubble-margin-inline-end: 60px;
--EventTile_bubble_line-margin-inline-start: -9px;
--EventTile_bubble_line-margin-inline-end: -12px;
--EventTile_bubble_gap-inline: 5px;

position: relative;
Expand Down Expand Up @@ -177,6 +179,10 @@ limitations under the License.
border-color: $quinary-content;
}

.mx_ReactionsRow {
margin-inline: var(--EventTile_bubble_line-margin-inline-start) var(--EventTile_bubble_line-margin-inline-end);
}

&[data-self=false] {
.mx_EventTile_line {
border-bottom-right-radius: var(--cornerRadius);
Expand Down Expand Up @@ -205,6 +211,10 @@ limitations under the License.
margin-inline-end: auto;
}

.mx_ReactionsRow {
justify-content: flex-start;
}

--backgroundColor: $eventbubble-others-bg;
}

Expand Down Expand Up @@ -242,13 +252,10 @@ limitations under the License.
}

.mx_ReactionsRow {
float: right;
clear: right;
display: flex;
justify-content: flex-end;

/* Moving the "add reaction button" before the reactions */
> :last-child {
order: -1;
order: -1; // Moving the "add reaction button" before the reactions
}
}

Expand All @@ -269,12 +276,11 @@ limitations under the License.
}

.mx_EventTile_line {
--EventTile_bubble_line-margin-inline-end: -12px;

position: relative;
display: flex;
gap: 5px var(--EventTile_bubble_gap-inline);
margin: 0 var(--EventTile_bubble_line-margin-inline-end) 0 -9px;
margin-block: 0;
margin-inline: var(--EventTile_bubble_line-margin-inline-start) var(--EventTile_bubble_line-margin-inline-end);
border-top-left-radius: var(--cornerRadius);
border-top-right-radius: var(--cornerRadius);

Expand Down Expand Up @@ -481,11 +487,6 @@ limitations under the License.
}
}

.mx_ReactionsRow {
margin-right: -18px;
margin-left: -9px;
}

&.mx_EventTile_bad {
/* Special layout scenario for "Unable To Decrypt (UTD)" events */
.mx_EventTile_line {
Expand Down
12 changes: 9 additions & 3 deletions res/css/views/rooms/_EventTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
}
}

.mx_ReactionsRow {
display: flex;
flex-flow: wrap;
align-items: center;
gap: $spacing-4;
}

&[data-layout=group] {
> .mx_DisambiguatedProfile {
line-height: $font-20px;
Expand Down Expand Up @@ -286,8 +293,7 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
}

.mx_ReactionsRow {
margin: 0;
padding: 4px 64px;
margin: $spacing-4 64px;
}
}

Expand Down Expand Up @@ -981,7 +987,7 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss
align-items: flex-end;

.mx_EventTile_line.mx_EventTile_mediaLine {
margin: 0 var(--EventBubbleTile_line-margin-inline-end) 0 0; // align with normal messages
margin: 0 var(--EventTile_bubble_line-margin-inline-end) 0 0; // align with normal messages
}
}
}
Expand Down