blue-web 1.14.1 → 1.14.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 +55 -92
- package/dist/style.css +44 -81
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +5 -5
- package/dist/style.scss +1 -1
- package/dist/styles/_collapse.scss +1 -1
- package/dist/styles/_general.scss +5 -28
- package/dist/styles/_page-header.scss +0 -4
- package/dist/styles/_tabs.scss +34 -45
- package/dist/styles/_variables.scss +0 -4
- package/package.json +2 -2
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.14.
|
|
2
|
+
* Blue Web v1.14.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
|
|
|
@@ -2779,6 +2779,11 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
|
|
|
2779
2779
|
&:not(caption) {
|
|
2780
2780
|
position: absolute !important;
|
|
2781
2781
|
}
|
|
2782
|
+
|
|
2783
|
+
// Fix to prevent overflowing children to become focusable
|
|
2784
|
+
* {
|
|
2785
|
+
overflow: hidden !important;
|
|
2786
|
+
}
|
|
2782
2787
|
}
|
|
2783
2788
|
|
|
2784
2789
|
// Use to only display content when it's focused, or one of its child elements is focused
|
|
@@ -3720,9 +3725,6 @@ $header-deep-bg: darken($header-bg, 4%) !default;
|
|
|
3720
3725
|
// Background color, when hovering action menu item.
|
|
3721
3726
|
$actions-control-bg-hover: $bla-button-bg-hover !default;
|
|
3722
3727
|
|
|
3723
|
-
// Width and height of the scrollbar indicators
|
|
3724
|
-
$scrollbar-size: 10px;
|
|
3725
|
-
|
|
3726
3728
|
// Shrink sidebar on smaller screens
|
|
3727
3729
|
$sidebar-shrink: true !default;
|
|
3728
3730
|
|
|
@@ -3736,7 +3738,6 @@ $sidebar-expanded-breakpoint: 1400px !default;
|
|
|
3736
3738
|
--blue-app-bg: #{$app-bg};
|
|
3737
3739
|
|
|
3738
3740
|
--blue-scrollbar-thumb-color-rgb: #{$scrollbar-thumb-color-rgb};
|
|
3739
|
-
--blue-scrollbar-size: #{$scrollbar-size};
|
|
3740
3741
|
|
|
3741
3742
|
--blue-sidebar-width: #{$bla-sidebar-width};
|
|
3742
3743
|
--blue-sidebar-color: #{$sidebar-color};
|
|
@@ -4164,7 +4165,7 @@ $sidebar-expanded-breakpoint: 1400px !default;
|
|
|
4164
4165
|
|
|
4165
4166
|
@mixin bsBanner($file) {
|
|
4166
4167
|
/*!
|
|
4167
|
-
* Bootstrap #{$file} v5.3.
|
|
4168
|
+
* Bootstrap #{$file} v5.3.6 (https://getbootstrap.com/)
|
|
4168
4169
|
* Copyright 2011-2025 The Bootstrap Authors
|
|
4169
4170
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
4170
4171
|
*/
|
|
@@ -8578,13 +8579,13 @@ textarea {
|
|
|
8578
8579
|
&:not(:last-child) {
|
|
8579
8580
|
@include border-end-radius(0);
|
|
8580
8581
|
|
|
8581
|
-
.card-img-top,
|
|
8582
|
-
.card-header {
|
|
8582
|
+
> .card-img-top,
|
|
8583
|
+
> .card-header {
|
|
8583
8584
|
// stylelint-disable-next-line property-disallowed-list
|
|
8584
8585
|
border-top-right-radius: 0;
|
|
8585
8586
|
}
|
|
8586
|
-
.card-img-bottom,
|
|
8587
|
-
.card-footer {
|
|
8587
|
+
> .card-img-bottom,
|
|
8588
|
+
> .card-footer {
|
|
8588
8589
|
// stylelint-disable-next-line property-disallowed-list
|
|
8589
8590
|
border-bottom-right-radius: 0;
|
|
8590
8591
|
}
|
|
@@ -8593,13 +8594,13 @@ textarea {
|
|
|
8593
8594
|
&:not(:first-child) {
|
|
8594
8595
|
@include border-start-radius(0);
|
|
8595
8596
|
|
|
8596
|
-
.card-img-top,
|
|
8597
|
-
.card-header {
|
|
8597
|
+
> .card-img-top,
|
|
8598
|
+
> .card-header {
|
|
8598
8599
|
// stylelint-disable-next-line property-disallowed-list
|
|
8599
8600
|
border-top-left-radius: 0;
|
|
8600
8601
|
}
|
|
8601
|
-
.card-img-bottom,
|
|
8602
|
-
.card-footer {
|
|
8602
|
+
> .card-img-bottom,
|
|
8603
|
+
> .card-footer {
|
|
8603
8604
|
// stylelint-disable-next-line property-disallowed-list
|
|
8604
8605
|
border-bottom-left-radius: 0;
|
|
8605
8606
|
}
|
|
@@ -10797,33 +10798,6 @@ $utilities: map-merge(
|
|
|
10797
10798
|
scrollbar-width: thin;
|
|
10798
10799
|
}
|
|
10799
10800
|
|
|
10800
|
-
@media screen and (min-width: 768px) {
|
|
10801
|
-
::-webkit-scrollbar {
|
|
10802
|
-
height: var(--blue-scrollbar-size);
|
|
10803
|
-
overflow: visible;
|
|
10804
|
-
width: var(--blue-scrollbar-size);
|
|
10805
|
-
}
|
|
10806
|
-
::-webkit-scrollbar-thumb {
|
|
10807
|
-
background-clip: padding-box;
|
|
10808
|
-
border: solid transparent;
|
|
10809
|
-
border-width: 1px;
|
|
10810
|
-
min-height: 28px;
|
|
10811
|
-
padding: 100px 0 0;
|
|
10812
|
-
border-radius: 0.3rem;
|
|
10813
|
-
}
|
|
10814
|
-
::-webkit-scrollbar-button {
|
|
10815
|
-
height: 0;
|
|
10816
|
-
width: 0;
|
|
10817
|
-
}
|
|
10818
|
-
::-webkit-scrollbar-track {
|
|
10819
|
-
border: solid transparent;
|
|
10820
|
-
border-width: 0 0 0 4px;
|
|
10821
|
-
}
|
|
10822
|
-
::-webkit-scrollbar-corner {
|
|
10823
|
-
background: 0 0;
|
|
10824
|
-
}
|
|
10825
|
-
}
|
|
10826
|
-
|
|
10827
10801
|
html,
|
|
10828
10802
|
body {
|
|
10829
10803
|
height: 100%;
|
|
@@ -10858,7 +10832,11 @@ body {
|
|
|
10858
10832
|
.pagination > li > a,
|
|
10859
10833
|
.list-group a.list-group-item {
|
|
10860
10834
|
&:not(.disabled):not(.readonly):not(.dropdown-toggle) {
|
|
10861
|
-
transition:
|
|
10835
|
+
transition:
|
|
10836
|
+
background-color 0.3s,
|
|
10837
|
+
color 0.15s,
|
|
10838
|
+
box-shadow 0.3s,
|
|
10839
|
+
opacity 0.3s;
|
|
10862
10840
|
|
|
10863
10841
|
@media (prefers-reduced-motion) {
|
|
10864
10842
|
transition: none;
|
|
@@ -11267,10 +11245,6 @@ body {
|
|
|
11267
11245
|
right: 0;
|
|
11268
11246
|
z-index: 4;
|
|
11269
11247
|
|
|
11270
|
-
@media screen and (min-width: 768px) {
|
|
11271
|
-
right: $scrollbar-size;
|
|
11272
|
-
}
|
|
11273
|
-
|
|
11274
11248
|
.navbar-nav {
|
|
11275
11249
|
margin: 0;
|
|
11276
11250
|
|
|
@@ -11878,48 +11852,23 @@ body {
|
|
|
11878
11852
|
}
|
|
11879
11853
|
|
|
11880
11854
|
.blue-tabs {
|
|
11881
|
-
display:
|
|
11882
|
-
|
|
11883
|
-
|
|
11884
|
-
--#{$prefix}nav-link-padding-x: #{$nav-link-padding-x};
|
|
11885
|
-
--#{$prefix}nav-link-padding-y: #{$nav-link-padding-y};
|
|
11886
|
-
@include rfs($nav-link-font-size, --#{$prefix}nav-link-font-size);
|
|
11887
|
-
--#{$prefix}nav-link-font-weight: #{$nav-link-font-weight};
|
|
11888
|
-
--#{$prefix}nav-link-color: #{$nav-link-color};
|
|
11889
|
-
--#{$prefix}nav-link-hover-color: #{$nav-link-hover-color};
|
|
11890
|
-
--#{$prefix}nav-link-disabled-color: #{$nav-link-disabled-color};
|
|
11891
|
-
|
|
11892
|
-
--#{$prefix}nav-tabs-border-width: #{$nav-tabs-border-width};
|
|
11893
|
-
--#{$prefix}nav-tabs-border-color: #{$nav-tabs-border-color};
|
|
11894
|
-
--#{$prefix}nav-tabs-border-radius: #{$nav-tabs-border-radius};
|
|
11895
|
-
--#{$prefix}nav-tabs-link-hover-border-color: #{$nav-tabs-link-hover-border-color};
|
|
11896
|
-
--#{$prefix}nav-tabs-link-active-color: #{$nav-tabs-link-active-color};
|
|
11897
|
-
--#{$prefix}nav-tabs-link-active-bg: #{$nav-tabs-link-active-bg};
|
|
11898
|
-
--#{$prefix}nav-tabs-link-active-border-color: #{$nav-tabs-link-active-border-color};
|
|
11855
|
+
display: flex;
|
|
11856
|
+
flex-wrap: wrap;
|
|
11857
|
+
flex-direction: row;
|
|
11899
11858
|
}
|
|
11900
11859
|
|
|
11901
11860
|
.blue-tab {
|
|
11861
|
+
// Unsetting to solve issues in Safari
|
|
11862
|
+
width: unset;
|
|
11863
|
+
height: unset;
|
|
11864
|
+
border-radius: unset;
|
|
11865
|
+
|
|
11902
11866
|
position: relative;
|
|
11903
|
-
|
|
11867
|
+
order: 0;
|
|
11904
11868
|
cursor: pointer;
|
|
11905
11869
|
user-select: none;
|
|
11870
|
+
-webkit-appearance: none;
|
|
11906
11871
|
appearance: none;
|
|
11907
|
-
|
|
11908
|
-
font-size: var(--#{$prefix}nav-link-font-size, 1rem);
|
|
11909
|
-
font-weight: var(--#{$prefix}nav-link-font-weight);
|
|
11910
|
-
color: var(--#{$prefix}nav-link-color);
|
|
11911
|
-
padding: var(--#{$prefix}nav-link-padding-y) var(--#{$prefix}nav-link-padding-x);
|
|
11912
|
-
margin-bottom: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
|
|
11913
|
-
border: var(--#{$prefix}nav-tabs-border-width) solid transparent;
|
|
11914
|
-
@include border-top-radius(var(--#{$prefix}nav-tabs-border-radius));
|
|
11915
|
-
|
|
11916
|
-
&:hover,
|
|
11917
|
-
&:focus {
|
|
11918
|
-
color: var(--#{$prefix}nav-link-hover-color);
|
|
11919
|
-
// Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link
|
|
11920
|
-
isolation: isolate;
|
|
11921
|
-
border-color: var(--#{$prefix}nav-tabs-link-hover-border-color);
|
|
11922
|
-
}
|
|
11923
11872
|
}
|
|
11924
11873
|
|
|
11925
11874
|
.blue-tab::before {
|
|
@@ -11928,21 +11877,35 @@ body {
|
|
|
11928
11877
|
|
|
11929
11878
|
.blue-tab-content {
|
|
11930
11879
|
display: none;
|
|
11931
|
-
|
|
11932
|
-
|
|
11933
|
-
|
|
11880
|
+
order: 1;
|
|
11881
|
+
width: 100%;
|
|
11882
|
+
}
|
|
11934
11883
|
|
|
11935
|
-
|
|
11884
|
+
input.blue-tab:checked + .blue-tab-content {
|
|
11885
|
+
display: block;
|
|
11936
11886
|
}
|
|
11937
11887
|
|
|
11938
|
-
.blue-
|
|
11939
|
-
|
|
11940
|
-
|
|
11941
|
-
|
|
11888
|
+
.blue-tabs.nav-tabs {
|
|
11889
|
+
border-bottom: none;
|
|
11890
|
+
|
|
11891
|
+
.blue-tab-content {
|
|
11892
|
+
border-top: var(--#{$prefix}nav-tabs-border-width) solid var(--#{$prefix}nav-tabs-border-color);
|
|
11893
|
+
}
|
|
11894
|
+
|
|
11895
|
+
.blue-tab:checked {
|
|
11896
|
+
color: var(--bs-nav-tabs-link-active-color);
|
|
11897
|
+
background-color: var(--bs-nav-tabs-link-active-bg);
|
|
11898
|
+
border-color: var(--bs-nav-tabs-link-active-border-color);
|
|
11899
|
+
}
|
|
11942
11900
|
}
|
|
11943
11901
|
|
|
11944
|
-
|
|
11945
|
-
|
|
11902
|
+
.blue-tabs.nav-underline {
|
|
11903
|
+
row-gap: 0;
|
|
11904
|
+
.blue-tab:checked {
|
|
11905
|
+
font-weight: var(--blue-tabs-underline-active-font-weight, 700);
|
|
11906
|
+
color: var(--bs-nav-underline-link-active-color);
|
|
11907
|
+
border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color, currentcolor);
|
|
11908
|
+
}
|
|
11946
11909
|
}
|
|
11947
11910
|
|
|
11948
11911
|
/**
|
|
@@ -12221,7 +12184,7 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12221
12184
|
&::details-content {
|
|
12222
12185
|
block-size: 0;
|
|
12223
12186
|
opacity: 0;
|
|
12224
|
-
translate: 0 -
|
|
12187
|
+
translate: 0 -4rem;
|
|
12225
12188
|
transition:
|
|
12226
12189
|
block-size 0.2s,
|
|
12227
12190
|
content-visibility 0.2s,
|