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/_breadcrumbs.scss
.breadcrumb {
  --#{$prefix}breadcrumb-item-active-font-weight: #{$breadcrumb-active-font-weight};
  --#{$prefix}breadcrumb-item-disabled-color: #{$breadcrumb-disabled-color};
  --#{$prefix}breadcrumb-link-color: #{$breadcrumb-link-color};
  padding: 0;
  margin: 0;
  background: transparent;

  a {
    color: var(--#{$prefix}breadcrumb-link-color);

    &:hover {
      text-decoration: underline;
    }
  }
}

.breadcrumb-muted {
  --#{$prefix}breadcrumb-link-color: var(--#{$prefix}muted);
}

.breadcrumb-item {
  &.active {
    font-weight: var(--#{$prefix}breadcrumb-item-active-font-weight);

    a {
      color: inherit;
      pointer-events: none;
    }
  }

  &.disabled {
    color: var(--#{$prefix}breadcrumb-item-disabled-color);

    &:before {
      color: inherit;
    }

    a {
      color: inherit;
      pointer-events: none;
    }
  }
}

@each $name, $symbol in $breadcrumb-variants {
  .breadcrumb-#{$name} {
    --#{$prefix}breadcrumb-divider: "#{quote($symbol)}";
  }
}