/home/techb158/dev.balacoffee.com/resources/src/assets/styles/vendor/bootstrap
NameSizeModeActions
.github/-0755rm
mixins/-0755rm
utilities/-0755rm
.babelrc.js2980644editdlrm
.browserslistrc2050644editdlrm
.editorconfig2220644editdlrm
.eslintignore610644editdlrm
.eslintrc.json70990644editdlrm
.gitattributes3980644editdlrm
.gitignore5970644editdlrm
.stylelintignore490644editdlrm
.stylelintrc76350644editdlrm
.travis.yml7410644editdlrm
bootstrap-grid.scss6490644editdlrm
bootstrap-reboot.scss4110644editdlrm
bootstrap.scss8990644editdlrm
_alert.scss11500644editdlrm
_badge.scss9820644editdlrm
_breadcrumb.scss12780644editdlrm
_button-group.scss37400644editdlrm
_buttons.scss27800644editdlrm
_card.scss60370644editdlrm
_carousel.scss52530644editdlrm
_close.scss8730644editdlrm
_code.scss9680644editdlrm
_custom-forms.scss122620644editdlrm
_dropdown.scss38390644editdlrm
_forms.scss87570644editdlrm
_functions.scss26600644editdlrm
_grid.scss10160644editdlrm
_images.scss11460644editdlrm
_input-group.scss53590644editdlrm
_jumbotron.scss3780644editdlrm
_list-group.scss28870644editdlrm
_media.scss830644editdlrm
_mixins.scss9840644editdlrm
_modal.scss49340644editdlrm
_nav.scss20220644editdlrm
_navbar.scss65290644editdlrm
_pagination.scss18740644editdlrm
_popover.scss45360644editdlrm
_print.scss30030644editdlrm
_progress.scss8640644editdlrm
_reboot.scss115510644editdlrm
_root.scss5720644editdlrm
_tables.scss35190644editdlrm
_toasts.scss9740644editdlrm
_tooltip.scss25030644editdlrm
_transitions.scss3110644editdlrm
_type.scss21150644editdlrm
_utilities.scss4360644editdlrm
_variables.scss331880644editdlrm
Edit: /home/techb158/dev.balacoffee.com/resources/src/assets/styles/vendor/bootstrap/_custom-forms.scss (12262B)
// Embedded icons from Open Iconic. // Released under MIT and copyright 2014 Waybury. // https://useiconic.com/open // Checkboxes and radios // // Base class takes care of all the key behavioral aspects. .custom-control { position: relative; display: block; min-height: ($font-size-base * $line-height-base); padding-left: $custom-control-gutter; } .custom-control-inline { display: inline-flex; margin-right: $custom-control-spacer-x; } .custom-control-input { position: absolute; z-index: -1; // Put the input behind the label so it doesn't overlay text opacity: 0; &:checked ~ .custom-control-label::before { color: $custom-control-indicator-checked-color; @include gradient-bg($custom-control-indicator-checked-bg); @include box-shadow($custom-control-indicator-checked-box-shadow); } &:focus ~ .custom-control-label::before { // the mixin is not used here to make sure there is feedback box-shadow: $custom-control-indicator-focus-box-shadow; } &:active ~ .custom-control-label::before { color: $custom-control-indicator-active-color; background-color: $custom-control-indicator-active-bg; @include box-shadow($custom-control-indicator-active-box-shadow); } &:disabled { ~ .custom-control-label { color: $custom-control-label-disabled-color; &::before { background-color: $custom-control-indicator-disabled-bg; } } } } // Custom control indicators // // Build the custom controls out of pseudo-elements. .custom-control-label { position: relative; margin-bottom: 0; // Background-color and (when enabled) gradient &::before { position: absolute; top: (($font-size-base * $line-height-base - $custom-control-indicator-size) / 2); left: -$custom-control-gutter; display: block; width: $custom-control-indicator-size; height: $custom-control-indicator-size; pointer-events: none; content: ""; user-select: none; background-color: $custom-control-indicator-bg; @include box-shadow($custom-control-indicator-box-shadow); } // Foreground (icon) &::after { position: absolute; top: (($font-size-base * $line-height-base - $custom-control-indicator-size) / 2); left: -$custom-control-gutter; display: block; width: $custom-control-indicator-size; height: $custom-control-indicator-size; content: ""; background-repeat: no-repeat; background-position: center center; background-size: $custom-control-indicator-bg-size; } } // Checkboxes // // Tweak just a few things for checkboxes. .custom-checkbox { .custom-control-label::before { @include border-radius($custom-checkbox-indicator-border-radius); } .custom-control-input:checked ~ .custom-control-label { &::before { @include gradient-bg($custom-control-indicator-checked-bg); } &::after { background-image: $custom-checkbox-indicator-icon-checked; } } .custom-control-input:indeterminate ~ .custom-control-label { &::before { @include gradient-bg($custom-checkbox-indicator-indeterminate-bg); @include box-shadow($custom-checkbox-indicator-indeterminate-box-shadow); } &::after { background-image: $custom-checkbox-indicator-icon-indeterminate; } } .custom-control-input:disabled { &:checked ~ .custom-control-label::before { background-color: $custom-control-indicator-checked-disabled-bg; } &:indeterminate ~ .custom-control-label::before { background-color: $custom-control-indicator-checked-disabled-bg; } } } // Radios // // Tweak just a few things for radios. .custom-radio { .custom-control-label::before { border-radius: $custom-radio-indicator-border-radius; } .custom-control-input:checked ~ .custom-control-label { &::before { @include gradient-bg($custom-control-indicator-checked-bg); } &::after { background-image: $custom-radio-indicator-icon-checked; } } .custom-control-input:disabled { &:checked ~ .custom-control-label::before { background-color: $custom-control-indicator-checked-disabled-bg; } } } // Select // // Replaces the browser default select with a custom one, mostly pulled from // https://primer.github.io/. // .custom-select { display: inline-block; width: 100%; height: $custom-select-height; padding: $custom-select-padding-y ($custom-select-padding-x + $custom-select-indicator-padding) $custom-select-padding-y $custom-select-padding-x; line-height: $custom-select-line-height; color: $custom-select-color; vertical-align: middle; background: $custom-select-bg $custom-select-indicator no-repeat right $custom-select-padding-x center; background-size: $custom-select-bg-size; border: $custom-select-border-width solid $custom-select-border-color; @if $enable-rounded { border-radius: $custom-select-border-radius; } @else { border-radius: 0; } @include box-shadow($custom-select-box-shadow); appearance: none; &:focus { border-color: $custom-select-focus-border-color; outline: 0; @if $enable-shadows { box-shadow: $custom-select-box-shadow, $custom-select-focus-box-shadow; } @else { box-shadow: $custom-select-focus-box-shadow; } &::-ms-value { // For visual consistency with other platforms/browsers, // suppress the default white text on blue background highlight given to // the selected option text when the (still closed)