| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/admin/styles/admin/javascript/ |
Upload File : |
/*
Single Checkbox Widget
==========================================================================
Styles the single checkbox widget (single_checkbox.js).
*/
$single-checkbox-border-color: #B6B6B6;
$single-checkbox-size: 14px;
.single-checkbox {
display: inline-block;
width: $single-checkbox-size;
height: $single-checkbox-size;
line-height: $single-checkbox-size;
text-align: center;
border: 1px solid $single-checkbox-border-color;
background-color: $body-bg;
cursor: pointer;
border-radius: 2px;
@include user-select(none);
@include transition(border .2s ease);
.fa {
font-size: $font-size-base;
color: $component-active-color;
visibility: hidden;
vertical-align: top;
}
&.focused {
border-color: $brand-green;
}
&.disabled {
cursor: not-allowed;
background-color: $body-bg-dark;
border-color: $single-checkbox-border-color;
.fa {
color: $text-color-light;
}
}
&:active {
background-color: $body-bg-dark;
}
&:hover:not(.disabled) {
border-color: $brand-primary;
@include transition(border 0.2s ease);
}
&.checked {
background-color: $brand-green;
border: 1px solid $brand-green;
.fa {
visibility: visible;
}
&:active:not(.disabled) {
background-color: $body-bg-dark;
}
}
}