mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-07 10:04:27 +00:00
69 lines
1.3 KiB
SCSS
69 lines
1.3 KiB
SCSS
.styled-checkbox {
|
|
position: absolute; // take it out of document flow
|
|
opacity: 0; // hide it
|
|
|
|
& + label {
|
|
position: relative;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
display: inline;
|
|
}
|
|
|
|
|
|
& + label:before {
|
|
content: '';
|
|
margin-right: 10px;
|
|
display: inline-block;
|
|
vertical-align: text-top;
|
|
width: 20px;
|
|
height: 20px;
|
|
background: white;
|
|
}
|
|
|
|
// Box hover
|
|
&:hover + label:before {
|
|
background: #5cb85c;
|
|
}
|
|
|
|
// Box focus
|
|
&:focus + label:before {
|
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
// Box checked
|
|
&:checked + label:before {
|
|
background: #5cb85c;
|
|
}
|
|
|
|
// Disabled state label.
|
|
&:disabled + label {
|
|
color: #b8b8b8;
|
|
cursor: auto;
|
|
}
|
|
|
|
// Disabled box.
|
|
&:disabled + label:before {
|
|
box-shadow: none;
|
|
background: #ddd;
|
|
}
|
|
|
|
// Checkmark. Could be replaced with an image
|
|
&:checked + label:after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 5px;
|
|
top: 9px;
|
|
background: white;
|
|
width: 2px;
|
|
height: 2px;
|
|
box-shadow: 2px 0 0 white,
|
|
4px 0 0 white,
|
|
4px -2px 0 white,
|
|
4px -4px 0 white,
|
|
4px -6px 0 white,
|
|
4px -8px 0 white;
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
|