zulip/static/styles/user_status.css
Ganesh Pawar 166bfa4cf8 user_status: Migrate from overlay to modal.
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.
2021-06-25 09:43:55 -07:00

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;
}
}
}