GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/parhudrw/www/wp-content/themes/around/assets/scss/html/components/_button-group.scss
//
// Button group
// --------------------------------------------------


// Fix secondary outline button inside button group

.btn-group .btn-outline-secondary {
  &:hover, &:active, &.active {
    border-color: $border-color !important;
  }
}

// Override button group toggle for primary outline buttons
.btn-group-toggle {
  .btn-outline-primary {
    &.active,
    &:hover, &:focus {
      border-color: transparent !important;
      background-color: rgba($primary, $btn-translucent-bg-opacity) !important;
      color: $primary !important;
    }
  }
  .btn-outline-light {
    &.active,
    &:hover, &:focus {
      border-color: transparent !important;
      background-color: rgba($light, $btn-translucent-bg-opacity) !important;
      color: $light !important;
    }
  }
}