Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add theming to emoji picker #4629

Merged
merged 1 commit into from
Sep 13, 2021
Merged
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
13 changes: 9 additions & 4 deletions src/react-components/room/EmojiPicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.emoji-mart {
font-size: 16px;
display: inline-block;
color: #222427;
color: theme.$text1-color;
--tab-highlight-color: #{theme.$blue};
@media (max-width: theme.$breakpoint-md) {
width: 95% !important; /* leave room for scrollbar */
Expand Down Expand Up @@ -112,8 +112,13 @@
width: 100%;
padding: 5px 25px 6px 10px;
border-radius: 5px;
border: 1px solid #d9d9d9;
border: 1px solid theme.$input-border-color;
outline: 0;
background-color: theme.$background1-color;
:focus {
border-color: theme.$input-outline-color;
box-shadow: 0 0 0 2px theme.$input-outline-color;
}
}

.emoji-mart-search input,
Expand Down Expand Up @@ -168,8 +173,8 @@
width: 100%;
font-weight: 500;
padding: 5px 6px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.95);
background-color: theme.$background1-color;

}

.emoji-mart-category-list {
Expand Down