blue-web 1.17.4 → 1.17.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/merged.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Blue Web v1.17.4 (https://bruegmann.github.io/blue-web)
2
+ * Blue Web v1.17.5 (https://bruegmann.github.io/blue-web)
3
3
  * Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
4
4
  */
5
5
 
@@ -3709,8 +3709,8 @@ $sidebar-color: color-contrast($sidebar-bg, $gray-900) !default;
3709
3709
  $sidebar-color-dark: color-contrast($sidebar-bg-dark, $gray-900) !default;
3710
3710
 
3711
3711
  // Color of indicator for active sidebar item.
3712
- $sidebar-indicator-color: $sidebar-color !default;
3713
- $sidebar-indicator-color-dark: $sidebar-color-dark !default;
3712
+ $sidebar-indicator-color: #{var(--bs-primary)} !default;
3713
+ $sidebar-indicator-color-dark: #{var(--bs-primary-text-emphasis)} !default;
3714
3714
 
3715
3715
  // Background of search control in sidebar.
3716
3716
  $sidebar-search-bg: $input-bg !default;
@@ -11852,14 +11852,27 @@ body {
11852
11852
  --#{$prefix}nav-link-color: var(--#{$prefix}list-group-action-color);
11853
11853
  }
11854
11854
 
11855
+ .nav-link:hover,
11856
+ .nav-link:focus {
11857
+ border-bottom-color: transparent;
11858
+ }
11859
+
11855
11860
  .nav-link.active,
11856
- .show > .nav-link {
11857
- font-weight: var(--blue-tabs-underline-active-font-weight, $font-weight-semibold);
11858
- border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color, var(--bs-primary));
11861
+ .show > .nav-link,
11862
+ .blue-tab:checked {
11863
+ &::after {
11864
+ @include blue-menu-item-indicator();
11865
+ @include blue-menu-item-indicator-horizontal();
11866
+ }
11867
+
11868
+ position: relative;
11869
+ font-weight: var(--blue-tabs-underline-active-font-weight, $font-weight-base);
11870
+ border-bottom-color: transparent;
11871
+ color: var(--bs-nav-underline-link-active-color);
11859
11872
  }
11860
11873
  }
11861
11874
 
11862
- .blue-tabs {
11875
+ .nav-underline .blue-tabs {
11863
11876
  display: flex;
11864
11877
  flex-wrap: wrap;
11865
11878
  flex-direction: row;
@@ -11912,11 +11925,6 @@ input.blue-tab:checked + .blue-tab-content {
11912
11925
 
11913
11926
  .blue-tabs.nav-underline {
11914
11927
  row-gap: 0;
11915
- .blue-tab:checked {
11916
- font-weight: var(--blue-tabs-underline-active-font-weight, $font-weight-semibold);
11917
- color: var(--bs-nav-underline-link-active-color);
11918
- border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color, var(--bs-primary));
11919
- }
11920
11928
  }
11921
11929
 
11922
11930
  /**