Skip to content
Snippets Groups Projects
Commit 9dead7e3 authored by Lucas Perais (lpe)'s avatar Lucas Perais (lpe)
Browse files

[FIX] web: fix less on toggle boolean

parent 23d7c534
Branches
Tags
No related merge requests found
......@@ -86,37 +86,39 @@ div.o_boolean_toggle {
width: 32px !important;
height: 18px;
> input {
display: none;
}
& > label {
& > input {
display: none;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #a0a0a0;
border-radius: 24px;
&:before {
& > .slider {
position: absolute;
content: "";
height: 12px;
width: 12px;
left: 3px;
bottom: 3px;
background-color: white;
border-radius: 50%;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #a0a0a0;
border-radius: 24px;
&:before {
position: absolute;
content: "";
height: 12px;
width: 12px;
left: 3px;
bottom: 3px;
background-color: white;
border-radius: 50%;
}
}
}
> input:checked + .slider {
background-color: @odoo-brand-optional;
& > input:checked + .slider {
background-color: @odoo-brand-optional;
&:before {
.translate(14px; 0px);
&:before {
.translate(14px; 0px);
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment