2023-03-15 19:39:06 +01:00
|
|
|
#set-user-status-modal {
|
2021-06-24 18:46:59 +02:00
|
|
|
/* A narrower width is more attractive for this modal. */
|
|
|
|
width: 384px;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-15 19:40:33 +01:00
|
|
|
.user-status-content-wrapper {
|
2021-06-28 10:02:45 +02:00
|
|
|
display: flex;
|
2023-09-18 20:30:19 +02:00
|
|
|
align-items: center;
|
2021-06-28 10:02:45 +02:00
|
|
|
border: 1px solid;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(0deg 0% 0% / 60%);
|
2021-06-28 10:02:45 +02:00
|
|
|
border-radius: 5px;
|
2019-01-26 21:14:33 +01:00
|
|
|
|
2023-03-15 19:45:26 +01:00
|
|
|
& input.user-status {
|
2024-10-15 21:02:00 +02:00
|
|
|
flex: 1 1 0;
|
|
|
|
width: 100%;
|
2021-06-28 10:02:45 +02:00
|
|
|
border: none;
|
2024-10-15 21:02:00 +02:00
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
2021-06-28 10:02:45 +02:00
|
|
|
background-color: transparent;
|
2024-10-15 21:02:00 +02:00
|
|
|
margin: 0;
|
2023-03-06 03:31:58 +01:00
|
|
|
|
2024-10-15 21:02:00 +02:00
|
|
|
&:focus {
|
|
|
|
box-shadow: none;
|
2021-06-28 10:02:45 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2024-10-15 21:02:00 +02:00
|
|
|
.clear_search_button {
|
|
|
|
position: static;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2023-03-15 19:47:37 +01:00
|
|
|
.status-emoji-wrapper {
|
2023-09-18 20:30:19 +02:00
|
|
|
padding: 4px 8px;
|
2021-06-28 10:02:45 +02:00
|
|
|
border-right: 1px solid;
|
2023-11-03 01:01:42 +01:00
|
|
|
border-color: hsl(0deg 0% 0% / 60%);
|
2021-06-28 10:02:45 +02:00
|
|
|
cursor: pointer;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-15 19:53:35 +01:00
|
|
|
.selected-emoji {
|
2021-08-03 15:07:52 +02:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
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. */
|
2023-03-15 19:53:35 +01:00
|
|
|
& img.selected-emoji,
|
2023-03-15 20:36:05 +01:00
|
|
|
.smiley-icon {
|
2023-12-20 07:55:10 +01:00
|
|
|
text-align: center;
|
2021-08-03 15:07:52 +02:00
|
|
|
min-width: 20px;
|
|
|
|
}
|
|
|
|
|
2023-03-15 20:36:05 +01:00
|
|
|
.smiley-icon {
|
2021-06-28 10:02:45 +02:00
|
|
|
&: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
|
|
|
|
2023-11-06 16:15:38 +01:00
|
|
|
& button.user-status-value:hover,
|
|
|
|
& button.user-status-value:focus {
|
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. */
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(200deg 100% 40%) !important;
|
2019-04-25 14:01:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-status-value {
|
2023-09-18 20:30:19 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2019-04-25 14:01:50 +02:00
|
|
|
width: 100%;
|
2023-09-18 20:30:19 +02:00
|
|
|
margin-bottom: 7px;
|
|
|
|
line-height: 1em;
|
2021-07-01 17:25:18 +02:00
|
|
|
|
2023-03-15 21:56:35 +01:00
|
|
|
.status-emoji {
|
2023-09-18 20:30:19 +02:00
|
|
|
/* Size and align status emoji to match
|
|
|
|
the top line of the modal. */
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
margin: 0 7px;
|
2021-07-01 17:25:18 +02:00
|
|
|
}
|
2019-04-25 14:01:50 +02:00
|
|
|
}
|
2019-04-23 18:07:10 +02:00
|
|
|
}
|
2019-04-18 01:22:24 +02:00
|
|
|
}
|