mirror of https://github.com/zulip/zulip.git
email_log: Do not use bootstrap css for radio buttons.
We add the CSS rules handled by bootstrap for the radio buttons in forward email modal to email_log.css as we are in process of removing bootstrap The elements for which CSS rules have been added are label with "radio" class and "radio" type input elements. The max-height property added to label by bootstrap is not added since it does not applies to non-replaced inline elements.
This commit is contained in:
parent
00ad7e5aeb
commit
8f149750f3
|
@ -15,4 +15,24 @@
|
|||
.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#forward_email_modal {
|
||||
label.radio {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
float: left;
|
||||
width: auto;
|
||||
cursor: pointer;
|
||||
margin: 4px 0 0 -20px;
|
||||
line-height: normal;
|
||||
|
||||
&:focus {
|
||||
outline: 1px dotted hsl(0, 0%, 20%);
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue