HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/ekspardev/public_html/tubisad/rapor/src/scss/ui/forms/_form-check.scss
/*
Form check
 */
.form-check {
  user-select: none;

  &.form-check-highlight .form-check-input:not(:checked) ~ .form-check-label {
    color: var(--#{$prefix}muted);
  }

  .form-check-label-off {
    color: var(--#{$prefix}muted);
  }

  .form-check-input:checked ~ .form-check-label-off {
    display: none;
  }

  .form-check-input:not(:checked) ~ .form-check-label-on {
    display: none;
  }
}

.form-check-input {
  background-size: $form-check-input-width;
  margin-top: ($form-check-min-height - $form-check-input-width) * .5;

  .form-switch & {
    @include transition(background-color$transition-time, background-position $transition-time);
  }
}

.form-check-label {
  display: block;

  &.required {
    &:after {
      content: "*";
      margin-left: .25rem;
      color: $red;
    }
  }
}

.form-check-description {
  display: block;
  color: var(--#{$prefix}muted);
  font-size: $h5-font-size;
  margin-top: .25rem;
}


.form-check-single {
  margin: 0;

  .form-check-input {
    margin: 0;
  }
}

/*
Form switch
 */
.form-switch {
  .form-check-input {
    height: $form-switch-height;
    margin-top: ($form-check-min-height - $form-switch-height) * .5;
  }
}

.form-switch-lg {
  padding-left: 3.5rem;
  min-height: 1.5rem;

  .form-check-input {
    height: 1.5rem;
    width: 2.75rem;
    background-size: 1.5rem;
    margin-left: -3.5rem;
  }

  .form-check-label {
    padding-top: .125rem;
  }
}

/*Correction of Form-check position*/
.form-check-input:checked{
  border: none;
}