12 lines
202 B
CSS
12 lines
202 B
CSS
.nice_select input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
|
|
.nice_select input[type="checkbox"]:checked + label {
|
|
background: red;
|
|
color:white;
|
|
}
|
|
|
|
.nice_select ul {
|
|
display: inline-block;
|
|
}
|