Commit d4abd278 by Simon

Fix beug backend

parent 65d62e20
...@@ -124,7 +124,6 @@ ...@@ -124,7 +124,6 @@
} }
.doodle-table th, td { .doodle-table th, td {
border:1px solid #e6e6e6;
padding: 0; padding: 0;
} }
...@@ -233,7 +232,7 @@ ...@@ -233,7 +232,7 @@
label.label_input{ .doodle-table label.label_input{
cursor: pointer; cursor: pointer;
position: relative; position: relative;
display: flex; display: flex;
...@@ -243,24 +242,24 @@ label.label_input{ ...@@ -243,24 +242,24 @@ label.label_input{
margin-bottom: 0; margin-bottom: 0;
} }
.form-control { .doodle-table .form-control {
border: 1px solid #f0f0f0; border: 1px solid #f0f0f0;
border-radius: 2px; border-radius: 2px;
padding: 1.15rem 0.75rem 0.25rem 0.75rem; padding: 1.15rem 0.75rem 0.25rem 0.75rem;
} }
.input-group-addon { .doodle-table .input-group-addon {
background: #f0f0f0; background: #f0f0f0;
border: 1px solid #dfdfdf !important; border: 1px solid #dfdfdf !important;
color: #adadad; color: #adadad;
border-radius: 2px; border-radius: 2px;
} }
.label_input input { .doodle-table .label_input input {
display: none; display: none;
} }
.label_input span { .doodle-table .label_input span {
position: relative; position: relative;
display: flex; display: flex;
width: 16px; width: 16px;
...@@ -271,7 +270,7 @@ label.label_input{ ...@@ -271,7 +270,7 @@ label.label_input{
overflow: hidden; overflow: hidden;
} }
.label_input span i { .doodle-table .label_input span i {
position: relative; position: relative;
width: 16px; width: 16px;
height: 16px; height: 16px;
...@@ -280,38 +279,38 @@ label.label_input{ ...@@ -280,38 +279,38 @@ label.label_input{
transform-origin: center left; 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: ""; content: "";
position: absolute; position: absolute;
background-color: white; background-color: white;
border-radius: 20px; border-radius: 20px;
} }
.label_input span i:before { .doodle-table .label_input span i:before {
height: 0; height: 0;
top: 60%; top: 60%;
left: 0; left: 0;
width: 2px; width: 2px;
} }
.label_input span i:after { .doodle-table .label_input span i:after {
width: 0; width: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
height: 2px; height: 2px;
} }
.label_input input:checked ~ span { .doodle-table .label_input input:checked ~ span {
border: none; border: none;
background-color: rgba(109, 92, 174, 1); 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%; height: 25%;
transition: height 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22); 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%; width: 75%;
transition: width 300ms 300ms cubic-bezier(0.165, 0.84, 0.44, 1); 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