Fix visual issue with radios
This commit is contained in:
parent
845a637082
commit
d4125be1b6
|
@ -5803,10 +5803,10 @@ div.label_select_child_left > span {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.switch_radio_button label {
|
||||
div.switch_radio_button label {
|
||||
background-color: #fff;
|
||||
color: rgba(0, 0, 0, 0.6);
|
||||
line-height: 9pt;
|
||||
line-height: 6px !important;
|
||||
text-align: center;
|
||||
padding: 14px 10px;
|
||||
margin-right: -1px;
|
||||
|
@ -5814,14 +5814,14 @@ div.label_select_child_left > span {
|
|||
transition: all 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.switch_radio_button label:first {
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
div.switch_radio_button label:first-of-type {
|
||||
border-top-left-radius: 4px !important;
|
||||
border-bottom-left-radius: 4px !important;
|
||||
}
|
||||
|
||||
.switch_radio_button label:last-child {
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
div.switch_radio_button label:last-of-type {
|
||||
border-top-right-radius: 4px !important;
|
||||
border-bottom-right-radius: 4px !important;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue