Your IP : 3.15.237.123


Current Path : /home/sudancam/.trash/src/scss/free/mixins/
Upload File :
Current File : /home/sudancam/.trash/src/scss/free/mixins/_buttons.scss

// Button variants
//
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons

// scss-docs-start btn-variant-mixin
@mixin button-variant(
  $background,
  $border,
  $color: color-contrast($background),
  $shadow: $btn-contextual-box-shadow
    if(
      $color == $color-contrast-light,
      shade-color($background, $btn-hover-bg-shade-amount),
      tint-color($background, $btn-hover-bg-tint-amount)
    ),
  $hover-background:
    if(
      $color == $color-contrast-light,
      shade-color($background, $btn-hover-bg-shade-amount),
      tint-color($background, $btn-hover-bg-tint-amount)
    ),
  $hover-border:
    if(
      $color == $color-contrast-light,
      shade-color($border, $btn-hover-border-shade-amount),
      tint-color($border, $btn-hover-border-tint-amount)
    ),
  $hover-color: $color,
  $focus-background:
    if(
      $color == $color-contrast-light,
      shade-color($background, $btn-focus-bg-shade-amount),
      tint-color($background, $btn-focus-bg-tint-amount)
    ),
  $focus-color: $color,
  $active-border:
    if(
      $color == $color-contrast-light,
      shade-color($border, $btn-active-border-shade-amount),
      tint-color($border, $btn-active-border-tint-amount)
    ),
  $active-background:
    if(
      $color == $color-contrast-light,
      shade-color($background, $btn-active-bg-shade-amount),
      tint-color($background, $btn-active-bg-tint-amount)
    ),
  $active-color: $color
) {
  --#{$prefix}btn-bg: #{$background};
  --#{$prefix}btn-color: #{$color};
  --#{$prefix}btn-box-shadow: #{$shadow};
  --#{$prefix}btn-hover-bg: #{$hover-background};
  --#{$prefix}btn-hover-color: #{$hover-color};
  --#{$prefix}btn-focus-bg: #{$focus-background};
  --#{$prefix}btn-focus-color: #{$focus-color};
  --#{$prefix}btn-active-bg: #{$active-background};
  --#{$prefix}btn-active-color: #{$active-color};
}
// scss-docs-end btn-variant-mixin

// scss-docs-start btn-outline-variant-mixin
@mixin button-outline-variant(
  $color,
  $hover-color,
  $focus-color,
  $active-color,
  $hover-background: tint-color($color, $btn-outline-hover-bg-tint-amount),
  $focus-background: tint-color($color, $btn-outline-focus-bg-tint-amount),
  $active-background: tint-color($color, $btn-outline-active-bg-tint-amount)
) {
  --#{$prefix}btn-bg: transparent;
  --#{$prefix}btn-color: #{$color};
  --#{$prefix}btn-hover-bg: #{$hover-background};
  --#{$prefix}btn-hover-color: #{$hover-color};
  --#{$prefix}btn-focus-bg: #{$focus-background};
  --#{$prefix}btn-focus-color: #{$focus-color};
  --#{$prefix}btn-active-bg: #{$active-background};
  --#{$prefix}btn-active-color: #{$active-color};
}
// scss-docs-end btn-outline-variant-mixin

// scss-docs-start btn-size-mixin
@mixin button-size($padding-top, $padding-bottom, $padding-x, $font-size, $line-height) {
  --#{$prefix}btn-padding-top: #{$padding-top};
  --#{$prefix}btn-padding-bottom: #{$padding-bottom};
  --#{$prefix}btn-padding-x: #{$padding-x};
  @include rfs($font-size, --#{$prefix}btn-font-size);
  --#{$prefix}btn-line-height: #{$line-height};
}
// scss-docs-end btn-size-mixin

// Button size variant outline
@mixin button-outline-size($padding-top, $padding-bottom, $padding-x, $font-size, $line-height) {
  --#{$prefix}btn-padding-top: #{$padding-top};
  --#{$prefix}btn-padding-bottom: #{$padding-bottom};
  --#{$prefix}btn-padding-x: #{$padding-x};
  @include rfs($font-size, --#{$prefix}btn-font-size);
  --#{$prefix}btn-line-height: #{$line-height};
}