@insaic/neon
Version:
A Mobile UI Components built on Vue
117 lines (114 loc) • 3.31 kB
CSS
.sq-checkicon-wrap.disabled .sq-icon-checkicon, .sq-checkicon-wrap.disabled .sq-icon-square-checked, .sq-checkicon-wrap.disabled .sq-icon-square-border-checked {
color: #bbb;
}
.sq-checkicon-wrap.disabled .sq-icon-unchecked, .sq-checkicon-wrap.disabled .sq-icon-square-unchecked, .sq-checkicon-wrap.disabled .sq-icon-square-border-unchecked {
opacity: .8;
}
.sq-checkicon-wrap .sq-icon-checkicon, .sq-checkicon-wrap .sq-icon-square-checked, .sq-checkicon-wrap .sq-icon-square-border-checked {
color: #4A90E2;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
font-size: inherit;
display: inline-block;
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.sq-checkicon-wrap .sq-icon-unchecked, .sq-checkicon-wrap .sq-icon-square-unchecked, .sq-checkicon-wrap .sq-icon-square-border-unchecked {
font-size: inherit;
display: inline-block;
color: #ccc;
background-color: #fff;
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.sq-checkicon-wrap .sq-icon-unchecked {
border-radius: 50%;
}
.sq-checkicon-wrap .sq-icon-square-border-unchecked {
border-radius: 4px;
}
.sq-childinsurance-cell {
background-color: #ffffff;
overflow: hidden;
position: relative;
}
.sq-childinsurance-cell-row {
height: 50px;
margin-left: 15px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.sq-childinsurance-cell-row ~ .sq-childinsurance-cell-row {
position: relative;
}
.sq-childinsurance-cell-row ~ .sq-childinsurance-cell-row::before {
content: " ";
position: absolute;
left: 15px;
right: 0;
height: 1px;
border: 0 solid #e5e5e5;
color: #e5e5e5;
background-color: #e5e5e5;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
transform: scaleY(0.5);
z-index: 0;
top: 0;
border-top: 1px;
}
.sq-childinsurance-cell-left {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.sq-childinsurance-cell-middle {
margin-left: 5px;
height: 50px;
line-height: 50px;
font-size: 13px;
color: #878787;
}
.sq-childinsurance-cell-right {
width: 80px;
height: 50px;
text-align: right;
line-height: 50px;
margin-right: 25px;
}
.sq-childinsurance-cell-arrow {
position: relative;
}
.sq-childinsurance-cell-arrow::after {
content: '';
display: inline-block;
width: 8px;
height: 8px;
border: 2px solid #e6e6e6;
border-top: 0;
border-left: 0;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
position: absolute;
right: -15px;
top: 50%;
margin-top: -4px;
}