mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:35:20 +08:00
27 lines
474 B
SCSS
27 lines
474 B
SCSS
|
.chat-channel-message-emoji-picker-connector {
|
||
|
position: relative;
|
||
|
|
||
|
.chat-emoji-picker {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
height: 50vh;
|
||
|
width: 100%;
|
||
|
box-shadow: shadow("card");
|
||
|
z-index: z("header") + 2;
|
||
|
max-width: 100vw;
|
||
|
|
||
|
&__backdrop {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
background: var(--primary);
|
||
|
opacity: 0.8;
|
||
|
z-index: z("header") + 1;
|
||
|
}
|
||
|
}
|
||
|
}
|