stream_settings: Add bootstrap rules for select elements.

This commit adds bootstrap CSS rules used for select
elements in stream settings to existing CSS in
subscriptions.css.

This change is done so we can safely remove select CSS
rules from bootstrap.css as a part of our process to
remove bootstrap.
This commit is contained in:
Sahil Batra 2022-12-25 13:34:03 +05:30 committed by Tim Abbott
parent bbcca49a5e
commit a3a3f7796a
1 changed files with 15 additions and 0 deletions

View File

@ -982,6 +982,21 @@ div.settings-radio-input-parent {
/* Match .setting_desktop_icon_count_display */
width: 325px;
height: fit-content;
padding: 4px 6px;
color: hsl(0, 0%, 33%);
border-radius: 4px;
border: 1px solid hsl(0, 0%, 80%);
cursor: pointer;
background-color: hsl(0, 0%, 100%);
&:disabled {
cursor: not-allowed;
background-color: hsl(0, 0%, 93%);
}
}
select.stream_post_policy_setting {
margin-bottom: 10px;
}
}