build(deps): update src/components/Checkbox/index.js, src/components/Checkbox/index.scss and yarn.lock
parent
c8f37c1bf8
commit
2783de1eb2
3 changed files with 10847 additions and 11202 deletions
@ -1,97 +1,94 @@ |
|||||||
.checkbox-symbol { |
.checkbox-symbol { |
||||||
position: absolute; |
pointer-events: none; |
||||||
width: 0; |
user-select: none; |
||||||
height: 0; |
} |
||||||
pointer-events: none; |
|
||||||
user-select: none; |
.checkbox-container { |
||||||
|
box-sizing: border-box; |
||||||
|
color: #222; |
||||||
|
height: 30px; |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
flex-flow: row wrap; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox-container * { |
||||||
|
box-sizing: border-box; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox-input { |
||||||
|
position: absolute; |
||||||
|
visibility: hidden; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox { |
||||||
|
user-select: none; |
||||||
|
cursor: pointer; |
||||||
|
padding: 6px 8px; |
||||||
|
border-radius: 6px; |
||||||
|
overflow: hidden; |
||||||
|
transition: all 0.3s ease; |
||||||
|
display: flex; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox:not(:last-child) { |
||||||
|
margin-right: 6px; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox:hover { |
||||||
|
background: inherit; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox span { |
||||||
|
vertical-align: middle; |
||||||
|
transform: translate3d(0, 0, 0); |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox span:first-child { |
||||||
|
position: relative; |
||||||
|
flex: 0 0 18px; |
||||||
|
width: 18px; |
||||||
|
height: 18px; |
||||||
|
border-radius: 4px; |
||||||
|
transform: scale(1); |
||||||
|
border: 1px solid #cccfdb; |
||||||
|
transition: all 0.3s ease; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox span:first-child svg { |
||||||
|
position: absolute; |
||||||
|
top: 3px; |
||||||
|
left: 2px; |
||||||
|
fill: none; |
||||||
|
stroke: #fff; |
||||||
|
stroke-dasharray: 16px; |
||||||
|
stroke-dashoffset: 16px; |
||||||
|
transition: all 0.3s ease; |
||||||
|
transform: translate3d(0, 0, 0); |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox span:last-child { |
||||||
|
padding-left: 8px; |
||||||
|
line-height: 18px; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox:hover span:first-child { |
||||||
|
border-color: #0077ff; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox-input:checked + .checkbox span:first-child { |
||||||
|
background: #0077ff; |
||||||
|
border-color: #0077ff; |
||||||
|
animation: zoom-in-out 0.3s ease; |
||||||
|
} |
||||||
|
|
||||||
|
.checkbox-input:checked + .checkbox span:first-child svg { |
||||||
|
stroke-dashoffset: 0; |
||||||
|
} |
||||||
|
|
||||||
|
@keyframes zoom-in-out { |
||||||
|
50% { |
||||||
|
transform: scale(0.9); |
||||||
} |
} |
||||||
|
} |
||||||
.checkbox-container { |
|
||||||
box-sizing: border-box; |
|
||||||
color: #222; |
|
||||||
height: 30px; |
|
||||||
display: flex; |
|
||||||
justify-content: center; |
|
||||||
align-items: center; |
|
||||||
flex-flow: row wrap; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox-container * { |
|
||||||
box-sizing: border-box; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox-input { |
|
||||||
position: absolute; |
|
||||||
visibility: hidden; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox { |
|
||||||
user-select: none; |
|
||||||
cursor: pointer; |
|
||||||
padding: 6px 8px; |
|
||||||
border-radius: 6px; |
|
||||||
overflow: hidden; |
|
||||||
transition: all 0.3s ease; |
|
||||||
display: flex; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox:not(:last-child) { |
|
||||||
margin-right: 6px; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox:hover { |
|
||||||
background: inherit; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox span { |
|
||||||
vertical-align: middle; |
|
||||||
transform: translate3d(0, 0, 0); |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox span:first-child { |
|
||||||
position: relative; |
|
||||||
flex: 0 0 18px; |
|
||||||
width: 18px; |
|
||||||
height: 18px; |
|
||||||
border-radius: 4px; |
|
||||||
transform: scale(1); |
|
||||||
border: 1px solid #cccfdb; |
|
||||||
transition: all 0.3s ease; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox span:first-child svg { |
|
||||||
position: absolute; |
|
||||||
top: 3px; |
|
||||||
left: 2px; |
|
||||||
fill: none; |
|
||||||
stroke: #fff; |
|
||||||
stroke-dasharray: 16px; |
|
||||||
stroke-dashoffset: 16px; |
|
||||||
transition: all 0.3s ease; |
|
||||||
transform: translate3d(0, 0, 0); |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox span:last-child { |
|
||||||
padding-left: 8px; |
|
||||||
line-height: 18px; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox:hover span:first-child { |
|
||||||
border-color: #0077ff; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox-input:checked + .checkbox span:first-child { |
|
||||||
background: #0077ff; |
|
||||||
border-color: #0077ff; |
|
||||||
animation: zoom-in-out 0.3s ease; |
|
||||||
} |
|
||||||
|
|
||||||
.checkbox-input:checked + .checkbox span:first-child svg { |
|
||||||
stroke-dashoffset: 0; |
|
||||||
} |
|
||||||
|
|
||||||
@keyframes zoom-in-out { |
|
||||||
50% { |
|
||||||
transform: scale(0.9); |
|
||||||
} |
|
||||||
} |
|
||||||
|
Loading…
Reference in new issue