72 lines
1.8 KiB
SCSS
72 lines
1.8 KiB
SCSS
/*
|
|
Branching ikone, radio, checkboxi...
|
|
*/
|
|
|
|
|
|
#branching {
|
|
|
|
/* font awesom za admin */
|
|
input[type="checkbox"].enka-admin-custom,
|
|
input[type="radio"].enka-admin-custom {
|
|
display: none !important;
|
|
}
|
|
input[type="checkbox"].enka-admin-custom+ span.enka-checkbox-radio:before,
|
|
input[type="radio"].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
font-family: $fontawesome;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
color: $dark-gray2;
|
|
|
|
font-weight: 400;
|
|
}
|
|
input[type="checkbox"].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
input[type="radio"].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before {
|
|
display: inline-block;
|
|
padding-top: 4px;
|
|
padding-left: 4px;
|
|
|
|
font-weight: 400;
|
|
}
|
|
|
|
input[type="checkbox"].enka-admin-custom + span.enka-checkbox-radio:before{
|
|
content: "\f0c8";
|
|
letter-spacing: 10px;
|
|
}
|
|
input[type="radio"].enka-admin-custom + span.enka-checkbox-radio:before{
|
|
content: "\f111";
|
|
letter-spacing: 8px;
|
|
}
|
|
/* select, checked */
|
|
input[type="checkbox"].enka-admin-custom:checked + span.enka-checkbox-radio:before{
|
|
content: "\f14a";
|
|
color: $dark-gray2;
|
|
letter-spacing: 8px;
|
|
}
|
|
input[type="radio"].enka-admin-custom:checked + span.enka-checkbox-radio:before{
|
|
content: "\f192";
|
|
color: $dark-gray2;
|
|
}
|
|
|
|
// Dodajanje, brisanje
|
|
span.faicon.delete_circle::before {
|
|
font-size: 14px;
|
|
}
|
|
span.faicon.add::before {
|
|
font-size: 14px;
|
|
}
|
|
|
|
// Plus, minus
|
|
span.faicon.plus::before,
|
|
span.faicon.minus::before{
|
|
cursor: pointer;
|
|
|
|
font-size: 12px;
|
|
color: $blue;
|
|
}
|
|
|
|
span.faicon.inline::before{
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
}
|