422 lines
7.4 KiB
SCSS
422 lines
7.4 KiB
SCSS
.checkbox {
|
|
padding-left: 5px;
|
|
label {
|
|
display: inline-block;
|
|
padding-left: 5px;
|
|
position: relative;
|
|
font-weight: 500;
|
|
font-size: 13px;
|
|
|
|
&::before {
|
|
-o-transition: 0.3s ease-in-out;
|
|
-webkit-transition: 0.3s ease-in-out;
|
|
background-color: lighten($dark,5%);
|
|
border-radius: 2px;
|
|
border: 1px solid $muted;
|
|
content: "";
|
|
display: inline-block;
|
|
height: 17px;
|
|
left: 0;
|
|
margin-left: -17px;
|
|
position: absolute;
|
|
transition: 0.3s ease-in-out;
|
|
width: 17px;
|
|
outline: none !important;
|
|
}
|
|
&::after {
|
|
color: $muted;
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
height: 16px;
|
|
left: 0;
|
|
margin-left: -17px;
|
|
padding-left: 3px;
|
|
padding-top: 1px;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 16px;
|
|
}
|
|
}
|
|
input[type="checkbox"] {
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
z-index: 1;
|
|
outline: none !important;
|
|
|
|
&:disabled + label {
|
|
opacity: 0.65;
|
|
}
|
|
}
|
|
input[type="checkbox"]:focus + label {
|
|
&::before {
|
|
outline-offset: -2px;
|
|
outline: none;
|
|
}
|
|
}
|
|
input[type="checkbox"]:checked + label {
|
|
&::after {
|
|
content: "\f00c";
|
|
font-family: 'FontAwesome';
|
|
}
|
|
}
|
|
input[type="checkbox"]:disabled + label {
|
|
&::before {
|
|
background-color: $light;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox.checkbox-circle {
|
|
label {
|
|
&::before {
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox.checkbox-inline {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.checkbox.checkbox-single {
|
|
input {
|
|
height: 18px;
|
|
width: 18px;
|
|
position: absolute;
|
|
}
|
|
label {
|
|
height: 18px;
|
|
width: 18px;
|
|
|
|
&:before {
|
|
margin-left: 0;
|
|
}
|
|
&:after {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-custom {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $primary;
|
|
border-color: $primary;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-primary {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $primary;
|
|
border-color: $primary;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-danger {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $danger;
|
|
border-color: $danger;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-info {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $info;
|
|
border-color: $info;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-warning {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $warning;
|
|
border-color: $warning;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-success {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $success;
|
|
border-color: $success;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-purple {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $purple;
|
|
border-color: $purple;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-pink {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $pink;
|
|
border-color: $pink;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkbox-inverse {
|
|
input[type="checkbox"]:checked + label {
|
|
&::before {
|
|
background-color: $inverse;
|
|
border-color: $inverse;
|
|
}
|
|
&::after {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Radios */
|
|
|
|
.radio {
|
|
//padding-left: 20px;
|
|
label {
|
|
display: inline-block;
|
|
padding-left: 5px;
|
|
position: relative;
|
|
font-weight: 500;
|
|
font-size: 13px;
|
|
&::before {
|
|
-o-transition: border 0.5s ease-in-out;
|
|
-webkit-transition: border 0.5s ease-in-out;
|
|
background-color: lighten($dark,5%);
|
|
border-radius: 50%;
|
|
border: 1px solid $muted;
|
|
content: "";
|
|
display: inline-block;
|
|
height: 17px;
|
|
left: 0;
|
|
margin-left: -20px;
|
|
position: absolute;
|
|
transition: border 0.5s ease-in-out;
|
|
width: 17px;
|
|
outline: none !important;
|
|
}
|
|
&::after {
|
|
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
|
-ms-transform: scale(0, 0);
|
|
-o-transform: scale(0, 0);
|
|
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
|
-webkit-transform: scale(0, 0);
|
|
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
|
background-color: $muted;
|
|
border-radius: 50%;
|
|
content: " ";
|
|
display: inline-block;
|
|
height: 11px;
|
|
left: 3px;
|
|
margin-left: -20px;
|
|
position: absolute;
|
|
top: 3px;
|
|
transform: scale(0, 0);
|
|
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
|
|
width: 11px;
|
|
}
|
|
}
|
|
input[type="radio"] {
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
z-index: 1;
|
|
outline: none !important;
|
|
&:disabled + label {
|
|
opacity: 0.65;
|
|
}
|
|
}
|
|
input[type="radio"]:focus + label {
|
|
&::before {
|
|
outline-offset: -2px;
|
|
outline: thin dotted;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::after {
|
|
-ms-transform: scale(1, 1);
|
|
-o-transform: scale(1, 1);
|
|
-webkit-transform: scale(1, 1);
|
|
transform: scale(1, 1);
|
|
}
|
|
}
|
|
input[type="radio"]:disabled + label {
|
|
&::before {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio.radio-inline {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.radio.radio-single {
|
|
label {
|
|
height: 17px;
|
|
}
|
|
}
|
|
|
|
.radio-custom {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $primary;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $primary;
|
|
}
|
|
&::after {
|
|
background-color: $primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-primary {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $primary;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $primary;
|
|
}
|
|
&::after {
|
|
background-color: $primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-danger {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $danger;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $danger;
|
|
}
|
|
&::after {
|
|
background-color: $danger;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-info {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $info;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $info;
|
|
}
|
|
&::after {
|
|
background-color: $info;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-warning {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $warning;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $warning;
|
|
}
|
|
&::after {
|
|
background-color: $warning;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-success {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $success;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $success;
|
|
}
|
|
&::after {
|
|
background-color: $success;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-purple {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $purple;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $purple;
|
|
}
|
|
&::after {
|
|
background-color: $purple;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-pink {
|
|
input[type="radio"] + label {
|
|
&::after {
|
|
background-color: $pink;
|
|
}
|
|
}
|
|
input[type="radio"]:checked + label {
|
|
&::before {
|
|
border-color: $pink;
|
|
}
|
|
&::after {
|
|
background-color: $pink;
|
|
}
|
|
}
|
|
} |