blue-web 1.17.4 → 1.17.6

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.6 (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;
@@ -3892,8 +3892,6 @@ $sidebar-expanded-breakpoint: 1400px !default;
3892
3892
  @extend .rounded;
3893
3893
  @extend .shadow;
3894
3894
  @extend .blue-menu-item-dropdown-from-start;
3895
- @extend .blue-sidebar-state;
3896
- @extend .open;
3897
3895
 
3898
3896
  position: absolute;
3899
3897
  top: 0;
@@ -11852,14 +11850,27 @@ body {
11852
11850
  --#{$prefix}nav-link-color: var(--#{$prefix}list-group-action-color);
11853
11851
  }
11854
11852
 
11853
+ .nav-link:hover,
11854
+ .nav-link:focus {
11855
+ border-bottom-color: transparent;
11856
+ }
11857
+
11855
11858
  .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));
11859
+ .show > .nav-link,
11860
+ .blue-tab:checked {
11861
+ &::after {
11862
+ @include blue-menu-item-indicator();
11863
+ @include blue-menu-item-indicator-horizontal();
11864
+ }
11865
+
11866
+ position: relative;
11867
+ font-weight: var(--blue-tabs-underline-active-font-weight, $font-weight-base);
11868
+ border-bottom-color: transparent;
11869
+ color: var(--bs-nav-underline-link-active-color);
11859
11870
  }
11860
11871
  }
11861
11872
 
11862
- .blue-tabs {
11873
+ .nav-underline .blue-tabs {
11863
11874
  display: flex;
11864
11875
  flex-wrap: wrap;
11865
11876
  flex-direction: row;
@@ -11912,11 +11923,6 @@ input.blue-tab:checked + .blue-tab-content {
11912
11923
 
11913
11924
  .blue-tabs.nav-underline {
11914
11925
  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
11926
  }
11921
11927
 
11922
11928
  /**
@@ -12137,6 +12143,8 @@ dialog.blue-modal:has(.offcanvas-start) {
12137
12143
  .blue-layout-side {
12138
12144
  grid-area: side;
12139
12145
  overflow: auto;
12146
+ background: inherit;
12147
+ overflow-y: auto;
12140
12148
  }
12141
12149
 
12142
12150
  @media (width < 64rem) {
@@ -12160,7 +12168,6 @@ dialog.blue-modal:has(.offcanvas-start) {
12160
12168
  .blue-layout-main {
12161
12169
  overflow: auto;
12162
12170
  grid-area: main;
12163
- // grid-column-start: 2;
12164
12171
  }
12165
12172
 
12166
12173
  .blue-layout-body {
@@ -12171,6 +12178,7 @@ dialog.blue-modal:has(.offcanvas-start) {
12171
12178
  margin-right: auto;
12172
12179
  overflow: auto;
12173
12180
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity, 1));
12181
+ color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity, 1));
12174
12182
  box-shadow: var(--bs-box-shadow-sm);
12175
12183
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
12176
12184
  border-radius: var(--bs-border-radius-lg);