Skip to content
Open
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
8 changes: 8 additions & 0 deletions stylesheets/components/fun/FunEmoji.scss
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,14 @@ $inline-emoji-container-name: inline-emoji;
line-height: 64px;
user-select: text;
}
.FunEmojiSelectionText::selection {
background-color: rgba(8, 73, 205, 255);
Copy link
Member

Choose a reason for hiding this comment

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

We also may not need the background-color, I think it's only the color: transparent that is getting used to hide the text version of the emoji

color: transparent;
}
.FunEmojiSelectionText::-moz-selection {
background-color: rgba(8, 73, 205, 255);
color: transparent;
}

Comment on lines +183 to 187
Copy link
Member

Choose a reason for hiding this comment

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

I don't think we need this. This ::-moz-selection is for Firefox and we only use Chromium inside of Signal Desktop.

.FunInlineEmoji__Image {
position: relative;
Expand Down