Skip to content

Commit e38df2d

Browse files
committed
Merge pull request #12 from BibiDA/master
border-radius for select box + check box color
2 parents c3ce3e8 + 37c05a1 commit e38df2d

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

app/assets/stylesheets/wigu/active_admin_theme.css.scss

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,4 +736,24 @@ form fieldset > ol > li fieldset ol li {
736736
//becouse of sidebar border 2px
737737
form.filter_form .filter_form_field.filter_date_range .seperator {
738738
width: 10px;
739-
}
739+
}
740+
741+
//filter select box border radius
742+
.filter_form_field select{
743+
border-radius: 3px;
744+
}
745+
746+
//radio button color change
747+
input[type='radio'] {
748+
&:before {
749+
content:'';
750+
display:block;
751+
width:50%;
752+
height:50%;
753+
margin: 20% auto;
754+
border-radius:50%;
755+
}
756+
&:checked:before{
757+
background: $skinMainSecondColor;
758+
}
759+
}

0 commit comments

Comments
 (0)