Sha256: e1f961a9985ef357aa5d648a0550c03a236208af3788322be865a8d949d65a07

Contents?: true

Size: 1.42 KB

Versions: 105

Compression:

Stored size: 1.42 KB

Contents

@import "../tokens/colors";
$transition: $transition_cubic;

[class^=pb_checkbox_kit] {
  display: inline-flex;
  .pb_checkbox_label {
    padding-left: $space_xs;
    cursor: pointer;
    font-size: $text_lt_default;
    user-select: none;
  }
  .pb_checkbox_checkmark {
    position: relative;
    height: 22px;
    width: 22px;
    border: solid $border_light 2px;
    border-radius: $border_rad_light;
    .check_icon{
      opacity: 0;
      position: relative;
      top: -2px;
      left: 1px;
      height: 16px;
      width:16px;
      color: $white;

    }
  }

  &:hover input ~ .pb_checkbox_checkmark {
    border-color: $primary_action;
  }

  input {
    position: relative;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
    &:checked ~ .pb_checkbox_checkmark {
      background-color: $primary_action;
      border-color: $primary_action;
    }
    &:checked ~ .pb_checkbox_checkmark {
      display: inline-block;
      .check_icon{
        opacity: $opacity_10;
      }
    }
  }



  &[class*=_dark] {
    input:checked ~ .pb_checkbox_checkmark {
      background-color: $primary_action;
      border-color: $primary_action;
    }

    &:hover .pb_checkbox_checkmark {
      border-color: $primary_action;
    }

    &.error {
      > .pb_checkbox_checkmark {
        border-color: $error_dark;
      }
    }
  }

  &.error {
    > .pb_checkbox_checkmark {
      border-color: $error;
    }
  }
}

Version data entries

105 entries across 105 versions & 1 rubygems

Version Path
playbook_ui-7.0.1.pre.alpha8 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha7 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha6 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha5 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha4 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha3 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha2 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.1.pre.alpha1 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha7 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha6 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha5 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-6.3.1 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha4 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha3 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha2 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-6.3.0 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-6.2.1 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-6.2.0 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-7.0.0.pre.alpha1 app/pb_kits/playbook/pb_checkbox/_checkbox.scss
playbook_ui-6.1.0.pre.alpha5 app/pb_kits/playbook/pb_checkbox/_checkbox.scss