blue-web 1.14.2 → 1.15.0

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.14.2 (https://bruegmann.github.io/blue-web)
2
+ * Blue Web v1.15.0 (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
 
@@ -33,9 +33,9 @@ $h4-font-size: $font-size-base * 1.125 !default;
33
33
  $h5-font-size: $font-size-base * 1.1 !default;
34
34
  $h6-font-size: $font-size-base !default;
35
35
 
36
- $border-radius: 0.5rem !default;
37
- $border-radius-lg: 0.7rem !default;
38
- $border-radius-sm: 0.3rem !default;
36
+ $border-radius: 0.7rem !default;
37
+ $border-radius-lg: 1rem !default;
38
+ $border-radius-sm: 0.5rem !default;
39
39
 
40
40
  $custom-checkbox-indicator-border-radius: $border-radius-sm !default;
41
41
 
@@ -11071,6 +11071,8 @@ body {
11071
11071
  }
11072
11072
 
11073
11073
  border: none;
11074
+ box-shadow: none;
11075
+ background-image: none;
11074
11076
 
11075
11077
  &:focus {
11076
11078
  box-shadow: none;
@@ -11288,8 +11290,8 @@ body {
11288
11290
  }
11289
11291
 
11290
11292
  .blue-header-title-image {
11291
- width: 2rem;
11292
- height: 2rem;
11293
+ width: var(--blue-header-title-image-width, var(--blue-header-title-image-size, 2rem));
11294
+ height: var(--blue-header-title-image-height, var(--blue-header-title-image-size, 2rem));
11293
11295
  }
11294
11296
 
11295
11297
  .blue-search {
@@ -11750,6 +11752,11 @@ body {
11750
11752
  );
11751
11753
 
11752
11754
  .blue-btn-plain-#{$color} {
11755
+ &:not(:hover) {
11756
+ box-shadow: none;
11757
+ background-image: none;
11758
+ }
11759
+
11753
11760
  @if $color == "light" {
11754
11761
  $text-color: color-contrast($value);
11755
11762
  }
@@ -11758,19 +11765,14 @@ body {
11758
11765
  transparent,
11759
11766
  transparent,
11760
11767
  $text-color,
11761
- $hover-background: shade-color($bg, $btn-hover-bg-shade-amount),
11762
- $hover-border: shade-color($bg, $btn-hover-border-shade-amount),
11763
- $active-background: $active-background,
11764
- $active-border:
11765
- if(
11766
- $color == $color-contrast-light,
11767
- shade-color($value, $btn-active-border-shade-amount),
11768
- tint-color($value, $btn-active-border-tint-amount)
11769
- ),
11770
- $active-color: color-contrast($active-background),
11771
- $disabled-background: $value,
11772
- $disabled-border: $value,
11773
- $disabled-color: color-contrast($value)
11768
+ $hover-background: tint-color($value, 80%),
11769
+ $hover-border: tint-color($value, 80%),
11770
+ $hover-color: if($color == "light", color-contrast($value), shade-color($value, 60%)),
11771
+ $active-background: shade-color($bg, $btn-hover-bg-shade-amount),
11772
+ $active-border: shade-color($bg, $btn-hover-border-shade-amount),
11773
+ $disabled-background: transparent,
11774
+ $disabled-border: transparent,
11775
+ $disabled-color: $text-color
11774
11776
  );
11775
11777
  }
11776
11778
  }
@@ -11778,7 +11780,7 @@ body {
11778
11780
  @include color-mode(dark) {
11779
11781
  @each $color, $value in $theme-colors {
11780
11782
  $bg: shade-color($value, 80%);
11781
- $text-color: $value;
11783
+ $text-color: tint-color($value, 40%);
11782
11784
 
11783
11785
  .blue-btn-plain-#{$color} {
11784
11786
  @if $color == "dark" {
@@ -11858,10 +11860,16 @@ body {
11858
11860
  }
11859
11861
 
11860
11862
  .blue-tab {
11863
+ // Unsetting to solve issues in Safari
11864
+ width: unset;
11865
+ height: unset;
11866
+ border-radius: unset;
11867
+
11861
11868
  position: relative;
11862
11869
  order: 0;
11863
11870
  cursor: pointer;
11864
11871
  user-select: none;
11872
+ -webkit-appearance: none;
11865
11873
  appearance: none;
11866
11874
  }
11867
11875