Commit d4abd278 by Simon

Fix beug backend

parent 65d62e20
......@@ -124,7 +124,6 @@
}
.doodle-table th, td {
border:1px solid #e6e6e6;
padding: 0;
}
......@@ -233,7 +232,7 @@
label.label_input{
.doodle-table label.label_input{
cursor: pointer;
position: relative;
display: flex;
......@@ -243,24 +242,24 @@ label.label_input{
margin-bottom: 0;
}
.form-control {
.doodle-table .form-control {
border: 1px solid #f0f0f0;
border-radius: 2px;
padding: 1.15rem 0.75rem 0.25rem 0.75rem;
}
.input-group-addon {
.doodle-table .input-group-addon {
background: #f0f0f0;
border: 1px solid #dfdfdf !important;
color: #adadad;
border-radius: 2px;
}
.label_input input {
.doodle-table .label_input input {
display: none;
}
.label_input span {
.doodle-table .label_input span {
position: relative;
display: flex;
width: 16px;
......@@ -271,7 +270,7 @@ label.label_input{
overflow: hidden;
}
.label_input span i {
.doodle-table .label_input span i {
position: relative;
width: 16px;
height: 16px;
......@@ -280,38 +279,38 @@ label.label_input{
transform-origin: center left;
}
.label_input span i:before, .label_input span i:after {
.doodle-table .label_input span i:before, .doodle-table .label_input span i:after {
content: "";
position: absolute;
background-color: white;
border-radius: 20px;
}
.label_input span i:before {
.doodle-table .label_input span i:before {
height: 0;
top: 60%;
left: 0;
width: 2px;
}
.label_input span i:after {
.doodle-table .label_input span i:after {
width: 0;
bottom: 0;
left: 0;
height: 2px;
}
.label_input input:checked ~ span {
.doodle-table .label_input input:checked ~ span {
border: none;
background-color: rgba(109, 92, 174, 1);
}
.label_input input:checked ~ span i:before {
.doodle-table .label_input input:checked ~ span i:before {
height: 25%;
transition: height 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.label_input input:checked ~ span i:after {
.doodle-table .label_input input:checked ~ span i:after {
width: 75%;
transition: width 300ms 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment