blue-web 1.17.2 → 1.17.3
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 +13 -6
- package/dist/style.css +11 -6
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +4 -4
- package/dist/style.scss +1 -1
- package/dist/styles/_menu-item.scss +1 -1
- package/dist/styles/_tabs.scss +2 -2
- package/package.json +4 -4
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.17.
|
|
2
|
+
* Blue Web v1.17.3 (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
|
|
|
@@ -209,7 +209,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
|
|
|
209
209
|
|
|
210
210
|
@each $color in $foregrounds {
|
|
211
211
|
$contrast-ratio: contrast-ratio($background, $color);
|
|
212
|
-
@if $contrast-ratio
|
|
212
|
+
@if $contrast-ratio >= $min-contrast-ratio {
|
|
213
213
|
@return $color;
|
|
214
214
|
} @else if $contrast-ratio > $max-ratio {
|
|
215
215
|
$max-ratio: $contrast-ratio;
|
|
@@ -4173,7 +4173,7 @@ $sidebar-expanded-breakpoint: 1400px !default;
|
|
|
4173
4173
|
|
|
4174
4174
|
@mixin bsBanner($file) {
|
|
4175
4175
|
/*!
|
|
4176
|
-
* Bootstrap #{$file} v5.3.
|
|
4176
|
+
* Bootstrap #{$file} v5.3.8 (https://getbootstrap.com/)
|
|
4177
4177
|
* Copyright 2011-2025 The Bootstrap Authors
|
|
4178
4178
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
4179
4179
|
*/
|
|
@@ -5895,6 +5895,12 @@ legend {
|
|
|
5895
5895
|
[type="search"] {
|
|
5896
5896
|
-webkit-appearance: textfield; // 1
|
|
5897
5897
|
outline-offset: -2px; // 2
|
|
5898
|
+
|
|
5899
|
+
// 3. Better affordance and consistent appearance for search cancel button
|
|
5900
|
+
&::-webkit-search-cancel-button {
|
|
5901
|
+
cursor: pointer;
|
|
5902
|
+
filter: grayscale(1);
|
|
5903
|
+
}
|
|
5898
5904
|
}
|
|
5899
5905
|
|
|
5900
5906
|
// 1. A few input types should stay LTR
|
|
@@ -10233,6 +10239,7 @@ textarea {
|
|
|
10233
10239
|
.spinner-grow,
|
|
10234
10240
|
.spinner-border {
|
|
10235
10241
|
display: inline-block;
|
|
10242
|
+
flex-shrink: 0;
|
|
10236
10243
|
width: var(--#{$prefix}spinner-width);
|
|
10237
10244
|
height: var(--#{$prefix}spinner-height);
|
|
10238
10245
|
vertical-align: var(--#{$prefix}spinner-vertical-align);
|
|
@@ -11104,7 +11111,7 @@ body {
|
|
|
11104
11111
|
&:focus-visible {
|
|
11105
11112
|
&,
|
|
11106
11113
|
&.active {
|
|
11107
|
-
box-shadow: inset 0 0 0.25rem;
|
|
11114
|
+
box-shadow: inset 0 0 0 0.25rem color-mix(in srgb, currentColor 15%, transparent);
|
|
11108
11115
|
}
|
|
11109
11116
|
}
|
|
11110
11117
|
}
|
|
@@ -11848,7 +11855,7 @@ body {
|
|
|
11848
11855
|
.nav-link.active,
|
|
11849
11856
|
.show > .nav-link {
|
|
11850
11857
|
font-weight: var(--blue-tabs-underline-active-font-weight, $font-weight-semibold);
|
|
11851
|
-
border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color,
|
|
11858
|
+
border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color, var(--bs-primary));
|
|
11852
11859
|
}
|
|
11853
11860
|
}
|
|
11854
11861
|
|
|
@@ -11908,7 +11915,7 @@ input.blue-tab:checked + .blue-tab-content {
|
|
|
11908
11915
|
.blue-tab:checked {
|
|
11909
11916
|
font-weight: var(--blue-tabs-underline-active-font-weight, $font-weight-semibold);
|
|
11910
11917
|
color: var(--bs-nav-underline-link-active-color);
|
|
11911
|
-
border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color,
|
|
11918
|
+
border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color, var(--bs-primary));
|
|
11912
11919
|
}
|
|
11913
11920
|
}
|
|
11914
11921
|
|