mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +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 ina208da9c4dto 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. (cherry picked from commitb119ff68c3)
This commit is contained in:
committed by
Alex Vandiver
parent
8ff2684d61
commit
5f397e5fa8
@@ -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