Compare commits

..

No commits in common. "304fa95e68403ce6dffc94d42093834df91b9c31" and "ff644395ec3c774c7e909c657e1e83652abb6517" have entirely different histories.

2 changed files with 21 additions and 18 deletions

View File

@ -3,9 +3,7 @@
// check radio 공통 // check radio 공통
.check-form-box input[type="checkbox"], .check-form-box input[type="checkbox"],
.radio-form-box input[type="radio"]{ .radio-form-box input[type="radio"]{
position: absolute; position: static;
top: 0;
left: 0;
margin-left:0; margin-left:0;
opacity: 0; opacity: 0;
z-index: 1; z-index: 1;
@ -46,24 +44,20 @@
border: 1px solid #A8B6C7; border: 1px solid #A8B6C7;
border-radius: 4px; border-radius: 4px;
background-color: #fff; background-color: #fff;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out; transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
cursor: pointer; cursor: pointer;
} }
&::after{ &::after{
content: ""; content: "";
display: inline-block; display: inline-block;
position: absolute; position: absolute;
top: -1px; width: 20px;
left: -1px; height: 20px;
width: 7px; top: 0px;
height: 9px; left: 0;
border: 2px solid transparent; margin-left: 0;
border-left: none; border-color: #fff;
border-top: none;
transform: translate(7.75px,4.5px) rotate(45deg);
-ms-transform: translate(7.75px,4.5px) rotate(45deg);
cursor: pointer; cursor: pointer;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
} }
} }
input[type="checkbox"]:checked + label::before{ input[type="checkbox"]:checked + label::before{
@ -72,7 +66,17 @@
} }
input[type="checkbox"]:checked + label::after{ input[type="checkbox"]:checked + label::after{
content: ""; content: "";
border-color: #fff; display: inline-block;
position: absolute;
top: -1px;
left: -1px;
width: 7px;
height: 9px;
border: 2px solid #fff;
border-left: none;
border-top: none;
transform: translate(7.75px,4.5px) rotate(45deg);
-ms-transform: translate(7.75px,4.5px) rotate(45deg);
} }
input[type="checkbox"]:disabled + label{ input[type="checkbox"]:disabled + label{
opacity: 0.7; opacity: 0.7;

View File

@ -576,7 +576,6 @@
@include defaultFont($font-s-13, $font-w-500, $font-c); @include defaultFont($font-s-13, $font-w-500, $font-c);
} }
.check-name-btn{ .check-name-btn{
padding-left: 5px;
margin-left: auto; margin-left: auto;
.bx-btn{ .bx-btn{
display: block; display: block;
@ -622,13 +621,13 @@
} }
.check-item-wrap{ .check-item-wrap{
@include flex(0px); display: flex;
align-items: center; align-items: center;
} }
.compliance-icon-wrap{ .compliance-icon-wrap{
margin-left: auto; margin-left: auto;
min-width: 44px; min-width: 44px;
@include flex(0px); display: flex;
align-items: center; align-items: center;
} }