2021-06-24 18:46:59 +02:00
|
|
|
#set_user_status_modal {
|
|
|
|
/* A narrower width is more attractive for this modal. */
|
|
|
|
width: 384px;
|
2021-06-29 08:42:31 +02:00
|
|
|
@media (width < $ml_min) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Center `position-fixed` modal */
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
margin-left: 0;
|
2021-06-28 10:02:45 +02:00
|
|
|
/* We are setting a z-index so emoji popover can be visible on top of it. */
|
|
|
|
z-index: 105;
|
|
|
|
.user_status_content_wrapper {
|
|
|
|
display: flex;
|
|
|
|
border: 1px solid;
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
|
|
|
border-radius: 5px;
|
2019-01-26 21:14:33 +01:00
|
|
|
|
2021-06-28 10:02:45 +02:00
|
|
|
input.user_status {
|
|
|
|
width: 95%;
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
padding-right: 25px;
|
|
|
|
@media (width < $ml_min) {
|
|
|
|
width: 92%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.status_emoji_wrapper {
|
|
|
|
height: 20px;
|
|
|
|
width: 22px;
|
2021-08-03 15:07:52 +02:00
|
|
|
padding: 8px 8px 1px 8px;
|
2021-06-28 10:02:45 +02:00
|
|
|
border-right: 1px solid;
|
|
|
|
border-color: inherit;
|
|
|
|
cursor: pointer;
|
|
|
|
.selected_emoji {
|
2021-08-03 15:07:52 +02:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2021-08-02 13:23:09 +02:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
2021-06-28 10:02:45 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-08-03 15:07:52 +02:00
|
|
|
|
|
|
|
/* For custom emojis and smiley icon to take full width. */
|
|
|
|
img.selected_emoji,
|
|
|
|
.smiley_icon {
|
|
|
|
min-width: 20px;
|
|
|
|
}
|
|
|
|
|
2021-06-28 10:02:45 +02:00
|
|
|
.smiley_icon {
|
|
|
|
display: block;
|
|
|
|
font-size: 18px;
|
|
|
|
position: relative;
|
2021-08-03 15:07:52 +02:00
|
|
|
top: -2px;
|
2021-06-28 10:02:45 +02:00
|
|
|
left: 2px;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2020-12-18 21:45:14 +01:00
|
|
|
}
|
2019-08-31 01:18:03 +02:00
|
|
|
}
|
2019-01-26 21:14:33 +01:00
|
|
|
|
2019-04-23 18:07:10 +02:00
|
|
|
.user-status-options {
|
2021-06-28 10:02:45 +02:00
|
|
|
padding-top: 15px;
|
2021-06-29 08:42:31 +02:00
|
|
|
padding-left: 2px;
|
2019-04-23 18:07:10 +02:00
|
|
|
|
2019-04-25 14:01:50 +02:00
|
|
|
button.user-status-value:hover {
|
2021-05-06 00:36:34 +02:00
|
|
|
/* Important is required for generic night them styling to not
|
2021-05-18 14:44:05 +02:00
|
|
|
have precedence over this. */
|
2021-05-06 00:36:34 +02:00
|
|
|
color: hsl(200, 100%, 40%) !important;
|
2019-04-25 14:01:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-status-value {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
line-height: 1.1em;
|
2021-07-01 17:25:18 +02:00
|
|
|
|
|
|
|
.status_emoji {
|
|
|
|
height: 18px;
|
|
|
|
width: 18px;
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
|
|
|
top: 2px;
|
|
|
|
}
|
2019-04-25 14:01:50 +02:00
|
|
|
}
|
2019-04-23 18:07:10 +02:00
|
|
|
}
|
2019-04-18 01:22:24 +02:00
|
|
|
}
|