mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
This also migrates from loading the modal dynamically rather than statically once at page initialization. With styling changes by tabbott to preserve the original look of the UI. Fixes #18278.
29 lines
672 B
CSS
29 lines
672 B
CSS
#set_user_status_modal {
|
|
/* A narrower width is more attractive for this modal. */
|
|
width: 384px;
|
|
|
|
input.user_status {
|
|
width: 95%;
|
|
@media (width < $ml_min) {
|
|
width: 92%;
|
|
}
|
|
}
|
|
|
|
.user-status-options {
|
|
padding: 0 5px 3px;
|
|
|
|
button.user-status-value:hover {
|
|
/* Important is required for generic night them styling to not
|
|
have precedence over this. */
|
|
color: hsl(200, 100%, 40%) !important;
|
|
}
|
|
|
|
.user-status-value {
|
|
width: 100%;
|
|
text-align: left;
|
|
margin-bottom: 10px;
|
|
line-height: 1.1em;
|
|
}
|
|
}
|
|
}
|