mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
stream_settings: Fix height of select elements.
Previously, we used to have top and bottom paddings of 4px to
the select elements but it was removed in a208da9c4d
to make
sure that text for the selected option is aligned properly.
All other select elements have height set to 30px, but the
select elements in stream settings page had height set to
"fit-content" and so they looked ugly after removing the
padding.
This commit sets the height of select elements in stream
settings to 30px.
This commit is contained in:
@@ -1016,7 +1016,7 @@ div.settings-radio-input-parent {
|
||||
/* Match with select elements in settings page */
|
||||
min-width: 325px;
|
||||
max-width: 100%;
|
||||
height: fit-content;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
& select.stream_post_policy_setting {
|
||||
|
Reference in New Issue
Block a user