mirror of https://github.com/zulip/zulip.git
settings: Do not use bootstrap css in radio-type display settings.
We rewrite the CSS rules, handled by bootstrap for the radio buttons in display settings (both user and realm-level defaults), to settings.css as we are in process of removing bootstrap. This commit adds a new class "display-settings-radio-choice-label" to radio label elements in the display settings and the bootstrap CSS rules along with existing CSS defined by us for radio-type display settings are added to this class. This change will help us in future where we may want to have reusable components (like settings_checkbox) for radio-type settings with visual preview. The line-height property added to input element by bootstrap is not added to settings.css since it is already added for all inputs in zulip.css.
This commit is contained in:
parent
f8065dcd3d
commit
55aaf1d56d
|
@ -939,29 +939,41 @@ input[type="checkbox"] {
|
|||
.emojiset_choices,
|
||||
.user_list_style_values {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
label {
|
||||
border-bottom: 1px solid hsla(0, 0%, 0%, 0.2);
|
||||
padding: 8px 0 10px;
|
||||
label.display-settings-radio-choice-label {
|
||||
border-bottom: 1px solid hsla(0, 0%, 0%, 0.2);
|
||||
padding: 8px 0 10px;
|
||||
|
||||
&:last-of-type {
|
||||
border-bottom: none;
|
||||
&:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin: 0 5px 0 0;
|
||||
width: auto;
|
||||
cursor: pointer;
|
||||
|
||||
&:focus {
|
||||
outline: 1px dotted hsl(0, 0%, 20%);
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin: 0 5px 0 0;
|
||||
|
||||
&:checked + span {
|
||||
font-weight: 600;
|
||||
}
|
||||
&:disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.right {
|
||||
float: right;
|
||||
&:checked + span {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
.emojiset_choices {
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
<label class="emoji-theme title">{{t "Emoji theme" }}</label>
|
||||
<div class="emojiset_choices grey-box prop-element" id="{{prefix}}emojiset" data-setting-widget-type="radio-group" data-setting-choice-type="string">
|
||||
{{#each settings_object.emojiset_choices}}
|
||||
<label>
|
||||
<label class="display-settings-radio-choice-label">
|
||||
<input type="radio" class="setting_emojiset_choice" name="emojiset" value="{{this.key}}"/>
|
||||
<span>{{this.text}}</span>
|
||||
<span class="right">
|
||||
|
@ -84,7 +84,7 @@
|
|||
<label class="title">{{t "User list style" }}</label>
|
||||
<div class="user_list_style_values grey-box prop-element" id="{{prefix}}user_list_style" data-setting-widget-type="radio-group" data-setting-choice-type="number">
|
||||
{{#each user_list_style_values}}
|
||||
<label>
|
||||
<label class="display-settings-radio-choice-label">
|
||||
<input type="radio" class="setting_user_list_style_choice" name="user_list_style" value="{{this.code}}"/>
|
||||
<span>{{this.description}}</span>
|
||||
<span class="right preview">
|
||||
|
|
Loading…
Reference in New Issue