blue-web 1.14.0 → 1.14.2
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 +126 -96
- package/dist/style.css +106 -83
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +5 -5
- package/dist/style.scss +2 -1
- package/dist/styles/_anchor.scss +36 -0
- package/dist/styles/_collapse.scss +26 -3
- package/dist/styles/_general.scss +5 -28
- package/dist/styles/_menu-item.scss +15 -2
- package/dist/styles/_page-header.scss +0 -4
- package/dist/styles/_tabs.scss +28 -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.2 (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;
|
|
@@ -11150,6 +11128,17 @@ body {
|
|
|
11150
11128
|
border: 1px solid color-mix(in srgb, currentColor 15%, transparent);
|
|
11151
11129
|
background-color: var(--blue-menu-item-dropdown-bg);
|
|
11152
11130
|
}
|
|
11131
|
+
|
|
11132
|
+
&[popover] {
|
|
11133
|
+
position: fixed;
|
|
11134
|
+
margin: 0;
|
|
11135
|
+
padding: 0;
|
|
11136
|
+
z-index: 1000;
|
|
11137
|
+
border: none;
|
|
11138
|
+
background: transparent;
|
|
11139
|
+
border-radius: calc(#{$border-radius} + 0.1rem);
|
|
11140
|
+
box-shadow: $box-shadow;
|
|
11141
|
+
}
|
|
11153
11142
|
}
|
|
11154
11143
|
|
|
11155
11144
|
.blue-menu-item-dropdown-caret.blue-caret {
|
|
@@ -11200,7 +11189,8 @@ body {
|
|
|
11200
11189
|
|
|
11201
11190
|
&:hover,
|
|
11202
11191
|
&:active,
|
|
11203
|
-
&.highlighted
|
|
11192
|
+
&.highlighted,
|
|
11193
|
+
&:has(+ :popover-open) {
|
|
11204
11194
|
color: inherit;
|
|
11205
11195
|
border-color: transparent;
|
|
11206
11196
|
|
|
@@ -11210,7 +11200,8 @@ body {
|
|
|
11210
11200
|
}
|
|
11211
11201
|
}
|
|
11212
11202
|
|
|
11213
|
-
&.highlighted
|
|
11203
|
+
&.highlighted,
|
|
11204
|
+
&:has(+ :popover-open) {
|
|
11214
11205
|
&::before {
|
|
11215
11206
|
opacity: 0.16;
|
|
11216
11207
|
}
|
|
@@ -11254,10 +11245,6 @@ body {
|
|
|
11254
11245
|
right: 0;
|
|
11255
11246
|
z-index: 4;
|
|
11256
11247
|
|
|
11257
|
-
@media screen and (min-width: 768px) {
|
|
11258
|
-
right: $scrollbar-size;
|
|
11259
|
-
}
|
|
11260
|
-
|
|
11261
11248
|
.navbar-nav {
|
|
11262
11249
|
margin: 0;
|
|
11263
11250
|
|
|
@@ -11865,48 +11852,17 @@ body {
|
|
|
11865
11852
|
}
|
|
11866
11853
|
|
|
11867
11854
|
.blue-tabs {
|
|
11868
|
-
display:
|
|
11869
|
-
|
|
11870
|
-
|
|
11871
|
-
--#{$prefix}nav-link-padding-x: #{$nav-link-padding-x};
|
|
11872
|
-
--#{$prefix}nav-link-padding-y: #{$nav-link-padding-y};
|
|
11873
|
-
@include rfs($nav-link-font-size, --#{$prefix}nav-link-font-size);
|
|
11874
|
-
--#{$prefix}nav-link-font-weight: #{$nav-link-font-weight};
|
|
11875
|
-
--#{$prefix}nav-link-color: #{$nav-link-color};
|
|
11876
|
-
--#{$prefix}nav-link-hover-color: #{$nav-link-hover-color};
|
|
11877
|
-
--#{$prefix}nav-link-disabled-color: #{$nav-link-disabled-color};
|
|
11878
|
-
|
|
11879
|
-
--#{$prefix}nav-tabs-border-width: #{$nav-tabs-border-width};
|
|
11880
|
-
--#{$prefix}nav-tabs-border-color: #{$nav-tabs-border-color};
|
|
11881
|
-
--#{$prefix}nav-tabs-border-radius: #{$nav-tabs-border-radius};
|
|
11882
|
-
--#{$prefix}nav-tabs-link-hover-border-color: #{$nav-tabs-link-hover-border-color};
|
|
11883
|
-
--#{$prefix}nav-tabs-link-active-color: #{$nav-tabs-link-active-color};
|
|
11884
|
-
--#{$prefix}nav-tabs-link-active-bg: #{$nav-tabs-link-active-bg};
|
|
11885
|
-
--#{$prefix}nav-tabs-link-active-border-color: #{$nav-tabs-link-active-border-color};
|
|
11855
|
+
display: flex;
|
|
11856
|
+
flex-wrap: wrap;
|
|
11857
|
+
flex-direction: row;
|
|
11886
11858
|
}
|
|
11887
11859
|
|
|
11888
11860
|
.blue-tab {
|
|
11889
11861
|
position: relative;
|
|
11890
|
-
|
|
11862
|
+
order: 0;
|
|
11891
11863
|
cursor: pointer;
|
|
11892
11864
|
user-select: none;
|
|
11893
11865
|
appearance: none;
|
|
11894
|
-
|
|
11895
|
-
font-size: var(--#{$prefix}nav-link-font-size, 1rem);
|
|
11896
|
-
font-weight: var(--#{$prefix}nav-link-font-weight);
|
|
11897
|
-
color: var(--#{$prefix}nav-link-color);
|
|
11898
|
-
padding: var(--#{$prefix}nav-link-padding-y) var(--#{$prefix}nav-link-padding-x);
|
|
11899
|
-
margin-bottom: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
|
|
11900
|
-
border: var(--#{$prefix}nav-tabs-border-width) solid transparent;
|
|
11901
|
-
@include border-top-radius(var(--#{$prefix}nav-tabs-border-radius));
|
|
11902
|
-
|
|
11903
|
-
&:hover,
|
|
11904
|
-
&:focus {
|
|
11905
|
-
color: var(--#{$prefix}nav-link-hover-color);
|
|
11906
|
-
// Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link
|
|
11907
|
-
isolation: isolate;
|
|
11908
|
-
border-color: var(--#{$prefix}nav-tabs-link-hover-border-color);
|
|
11909
|
-
}
|
|
11910
11866
|
}
|
|
11911
11867
|
|
|
11912
11868
|
.blue-tab::before {
|
|
@@ -11915,21 +11871,35 @@ body {
|
|
|
11915
11871
|
|
|
11916
11872
|
.blue-tab-content {
|
|
11917
11873
|
display: none;
|
|
11918
|
-
|
|
11919
|
-
|
|
11920
|
-
|
|
11874
|
+
order: 1;
|
|
11875
|
+
width: 100%;
|
|
11876
|
+
}
|
|
11921
11877
|
|
|
11922
|
-
|
|
11878
|
+
input.blue-tab:checked + .blue-tab-content {
|
|
11879
|
+
display: block;
|
|
11923
11880
|
}
|
|
11924
11881
|
|
|
11925
|
-
.blue-
|
|
11926
|
-
|
|
11927
|
-
|
|
11928
|
-
|
|
11882
|
+
.blue-tabs.nav-tabs {
|
|
11883
|
+
border-bottom: none;
|
|
11884
|
+
|
|
11885
|
+
.blue-tab-content {
|
|
11886
|
+
border-top: var(--#{$prefix}nav-tabs-border-width) solid var(--#{$prefix}nav-tabs-border-color);
|
|
11887
|
+
}
|
|
11888
|
+
|
|
11889
|
+
.blue-tab:checked {
|
|
11890
|
+
color: var(--bs-nav-tabs-link-active-color);
|
|
11891
|
+
background-color: var(--bs-nav-tabs-link-active-bg);
|
|
11892
|
+
border-color: var(--bs-nav-tabs-link-active-border-color);
|
|
11893
|
+
}
|
|
11929
11894
|
}
|
|
11930
11895
|
|
|
11931
|
-
|
|
11932
|
-
|
|
11896
|
+
.blue-tabs.nav-underline {
|
|
11897
|
+
row-gap: 0;
|
|
11898
|
+
.blue-tab:checked {
|
|
11899
|
+
font-weight: var(--blue-tabs-underline-active-font-weight, 700);
|
|
11900
|
+
color: var(--bs-nav-underline-link-active-color);
|
|
11901
|
+
border-bottom-color: var(--blue-tabs-underline-active-border-bottom-color, currentcolor);
|
|
11902
|
+
}
|
|
11933
11903
|
}
|
|
11934
11904
|
|
|
11935
11905
|
/**
|
|
@@ -12174,8 +12144,6 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12174
12144
|
}
|
|
12175
12145
|
|
|
12176
12146
|
// Collapse with details and animated
|
|
12177
|
-
// Right now not part of Blue Web, but could become one
|
|
12178
|
-
|
|
12179
12147
|
.blue-collapse {
|
|
12180
12148
|
interpolate-size: allow-keywords;
|
|
12181
12149
|
|
|
@@ -12209,14 +12177,20 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12209
12177
|
|
|
12210
12178
|
&::details-content {
|
|
12211
12179
|
block-size: 0;
|
|
12180
|
+
opacity: 0;
|
|
12181
|
+
translate: 0 -4rem;
|
|
12212
12182
|
transition:
|
|
12213
12183
|
block-size 0.2s,
|
|
12214
|
-
content-visibility 0.2s
|
|
12184
|
+
content-visibility 0.2s,
|
|
12185
|
+
opacity 0.2s,
|
|
12186
|
+
translate 0.2s;
|
|
12215
12187
|
transition-behavior: allow-discrete;
|
|
12216
12188
|
}
|
|
12217
12189
|
|
|
12218
12190
|
&[open]::details-content {
|
|
12219
12191
|
block-size: auto;
|
|
12192
|
+
opacity: 1;
|
|
12193
|
+
translate: 0;
|
|
12220
12194
|
}
|
|
12221
12195
|
}
|
|
12222
12196
|
|
|
@@ -12227,6 +12201,25 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12227
12201
|
}
|
|
12228
12202
|
}
|
|
12229
12203
|
|
|
12204
|
+
// Let's you group a collapse together with another UI element like a button that should come before the collapse summary.
|
|
12205
|
+
.blue-collapse-group {
|
|
12206
|
+
display: grid;
|
|
12207
|
+
grid-template-rows: auto;
|
|
12208
|
+
grid-template-columns: 1fr;
|
|
12209
|
+
|
|
12210
|
+
& > details {
|
|
12211
|
+
display: contents;
|
|
12212
|
+
|
|
12213
|
+
& > summary {
|
|
12214
|
+
grid-column: 2;
|
|
12215
|
+
|
|
12216
|
+
& + * {
|
|
12217
|
+
width: calc(100% + 1rem - 2px);
|
|
12218
|
+
}
|
|
12219
|
+
}
|
|
12220
|
+
}
|
|
12221
|
+
}
|
|
12222
|
+
|
|
12230
12223
|
.BLUE-actions {
|
|
12231
12224
|
display: flex;
|
|
12232
12225
|
white-space: nowrap;
|
|
@@ -12249,6 +12242,43 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12249
12242
|
position: absolute;
|
|
12250
12243
|
}
|
|
12251
12244
|
|
|
12245
|
+
.blue-anchor {
|
|
12246
|
+
anchor-name: var(--blue-anchor-name, --anchor-1);
|
|
12247
|
+
}
|
|
12248
|
+
|
|
12249
|
+
.blue-anchored {
|
|
12250
|
+
top: anchor(var(--blue-anchor-name, --anchor-1) bottom);
|
|
12251
|
+
}
|
|
12252
|
+
|
|
12253
|
+
.blue-anchored-start {
|
|
12254
|
+
left: anchor(var(--blue-anchor-name, --anchor-1) left);
|
|
12255
|
+
}
|
|
12256
|
+
|
|
12257
|
+
.blue-anchored-end {
|
|
12258
|
+
left: anchor(var(--blue-anchor-name, --anchor-1) right);
|
|
12259
|
+
translate: -100%;
|
|
12260
|
+
}
|
|
12261
|
+
|
|
12262
|
+
@supports not (anchor-name: --anchor-1) {
|
|
12263
|
+
.blue-anchored-end {
|
|
12264
|
+
translate: none;
|
|
12265
|
+
}
|
|
12266
|
+
|
|
12267
|
+
.blue-anchored-fallback {
|
|
12268
|
+
left: 50%;
|
|
12269
|
+
top: 50%;
|
|
12270
|
+
translate: -50% -50%;
|
|
12271
|
+
|
|
12272
|
+
&::backdrop {
|
|
12273
|
+
--bs-backdrop-bg: #000;
|
|
12274
|
+
--bs-backdrop-opacity: 0.5;
|
|
12275
|
+
background-color: var(--bs-backdrop-bg);
|
|
12276
|
+
transition: opacity 0.2s;
|
|
12277
|
+
opacity: var(--bs-backdrop-opacity);
|
|
12278
|
+
}
|
|
12279
|
+
}
|
|
12280
|
+
}
|
|
12281
|
+
|
|
12252
12282
|
|
|
12253
12283
|
/* Make DevExpress components look more like Bootstrap/Blue */
|
|
12254
12284
|
[class^="dxbl-"] {
|