blue-web 1.15.0 → 1.15.1
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 +34 -54
- package/dist/style.css +19 -55
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +3 -3
- package/dist/style.scss +12 -4
- package/dist/styles/_bootstrap-variables.scss +2 -0
- package/dist/styles/_devexpress.css +4 -0
- package/dist/styles/_input-group.scss +29 -0
- package/dist/styles/_tabs.scss +4 -1
- package/package.json +1 -1
- package/dist/styles/_search.scss +0 -66
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.15.
|
|
2
|
+
* Blue Web v1.15.1 (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
|
|
|
@@ -47,6 +47,8 @@ $link-hover-decoration: underline !default;
|
|
|
47
47
|
$focus-ring-color: #{rgba(var(--bs-primary-rgb), 25%)} !default;
|
|
48
48
|
$input-focus-border-color: #{rgba(var(--bs-primary-rgb), 50%)} !default;
|
|
49
49
|
|
|
50
|
+
$enable-button-pointers: false !default;
|
|
51
|
+
|
|
50
52
|
|
|
51
53
|
// Bootstrap functions
|
|
52
54
|
//
|
|
@@ -10771,13 +10773,21 @@ $utilities: map-merge(
|
|
|
10771
10773
|
// scss-docs-end import-stack
|
|
10772
10774
|
|
|
10773
10775
|
|
|
10774
|
-
//
|
|
10775
|
-
//
|
|
10776
|
+
// Make it overridable via CSS variables, as it is not yet possible in Bootstrap.
|
|
10777
|
+
// Check with a newer Bootstrap version to see if it is still necessary.
|
|
10776
10778
|
.form-check-input:checked {
|
|
10777
10779
|
background-color: var(--bs-primary, #{$form-check-input-checked-bg-color});
|
|
10778
10780
|
border-color: var(--bs-primary, #{$form-check-input-checked-border-color});
|
|
10779
10781
|
}
|
|
10780
10782
|
|
|
10783
|
+
// Resets cursor from Bootstrap' _reboot.scss based on option.
|
|
10784
|
+
@if ($enable-button-pointers: false) {
|
|
10785
|
+
summary,
|
|
10786
|
+
[role="button"] {
|
|
10787
|
+
cursor: unset;
|
|
10788
|
+
}
|
|
10789
|
+
}
|
|
10790
|
+
|
|
10781
10791
|
// In previous versions of Bootstrap, `.page-header` was a class that could be used to add a border to the bottom of a page header.
|
|
10782
10792
|
// Unfortunately his class was removed in Bootstrap 5, so it's now part of Blue Web CSS.
|
|
10783
10793
|
.blue-page-header,
|
|
@@ -11294,73 +11304,36 @@ body {
|
|
|
11294
11304
|
height: var(--blue-header-title-image-height, var(--blue-header-title-image-size, 2rem));
|
|
11295
11305
|
}
|
|
11296
11306
|
|
|
11297
|
-
.blue-
|
|
11298
|
-
display: flex;
|
|
11299
|
-
align-items: center;
|
|
11307
|
+
.blue-input-group {
|
|
11300
11308
|
border: $input-border-width solid $input-border-color;
|
|
11301
11309
|
border-radius: $input-border-radius;
|
|
11302
11310
|
background-color: $input-bg;
|
|
11303
11311
|
|
|
11304
|
-
&.
|
|
11305
|
-
|
|
11306
|
-
|
|
11307
|
-
|
|
11308
|
-
display: flex;
|
|
11309
|
-
}
|
|
11312
|
+
&.focus,
|
|
11313
|
+
&:has(input:focus) {
|
|
11314
|
+
box-shadow: $input-btn-focus-box-shadow;
|
|
11315
|
+
border-color: $input-focus-border-color;
|
|
11310
11316
|
|
|
11311
|
-
|
|
11312
|
-
|
|
11317
|
+
.input-group-text {
|
|
11318
|
+
color: #{var(--bs-primary-text-emphasis)};
|
|
11313
11319
|
}
|
|
11314
11320
|
}
|
|
11315
11321
|
|
|
11316
|
-
&.focus {
|
|
11317
|
-
box-shadow: inset $input-btn-focus-box-shadow;
|
|
11318
|
-
}
|
|
11319
|
-
}
|
|
11320
|
-
|
|
11321
|
-
.blue-sidebar .blue-search:not(.blue-search-body) {
|
|
11322
|
-
margin-left: map-get($spacers, 1);
|
|
11323
|
-
margin-right: map-get($spacers, 1);
|
|
11324
|
-
}
|
|
11325
|
-
|
|
11326
|
-
.blue-search-input-group {
|
|
11327
|
-
display: none;
|
|
11328
|
-
|
|
11329
11322
|
.input-group-text {
|
|
11330
11323
|
border-color: transparent;
|
|
11331
11324
|
background-color: transparent;
|
|
11332
11325
|
}
|
|
11333
|
-
}
|
|
11334
|
-
|
|
11335
|
-
.blue-search-control {
|
|
11336
|
-
border: none;
|
|
11337
|
-
background-color: transparent !important;
|
|
11338
11326
|
|
|
11339
|
-
|
|
11340
|
-
|
|
11341
|
-
|
|
11342
|
-
}
|
|
11343
|
-
|
|
11344
|
-
.blue-search-reset-btn {
|
|
11345
|
-
color: rgba($input-color, 0.7);
|
|
11346
|
-
|
|
11347
|
-
&:hover {
|
|
11348
|
-
color: $input-color;
|
|
11349
|
-
}
|
|
11350
|
-
}
|
|
11351
|
-
|
|
11352
|
-
.blue-search.blue-search-sidebar {
|
|
11353
|
-
transition: opacity 0.2s ease-in-out;
|
|
11327
|
+
.form-control {
|
|
11328
|
+
border: none;
|
|
11329
|
+
background-color: transparent !important;
|
|
11354
11330
|
|
|
11355
|
-
|
|
11356
|
-
|
|
11331
|
+
&:focus {
|
|
11332
|
+
box-shadow: none;
|
|
11333
|
+
}
|
|
11357
11334
|
}
|
|
11358
11335
|
}
|
|
11359
11336
|
|
|
11360
|
-
.blue-search.blue-search-sidebar:not(:hover):not(.focus) {
|
|
11361
|
-
opacity: 0.7;
|
|
11362
|
-
}
|
|
11363
|
-
|
|
11364
11337
|
.blue-actions {
|
|
11365
11338
|
--max-width: calc(
|
|
11366
11339
|
var(--bs-btn-border-width, 1px) + var(--bs-btn-padding-x, 0.75rem) + var(--bs-btn-font-size, 1rem) +
|
|
@@ -11867,10 +11840,13 @@ body {
|
|
|
11867
11840
|
|
|
11868
11841
|
position: relative;
|
|
11869
11842
|
order: 0;
|
|
11870
|
-
cursor: pointer;
|
|
11871
11843
|
user-select: none;
|
|
11872
11844
|
-webkit-appearance: none;
|
|
11873
11845
|
appearance: none;
|
|
11846
|
+
|
|
11847
|
+
@if ($enable-button-pointers) {
|
|
11848
|
+
cursor: pointer;
|
|
11849
|
+
}
|
|
11874
11850
|
}
|
|
11875
11851
|
|
|
11876
11852
|
.blue-tab::before {
|
|
@@ -12313,6 +12289,10 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12313
12289
|
font-size: 1rem;
|
|
12314
12290
|
}
|
|
12315
12291
|
|
|
12292
|
+
.dxbl-pager-page-edit {
|
|
12293
|
+
min-width: 2.5em;
|
|
12294
|
+
}
|
|
12295
|
+
|
|
12316
12296
|
.dxbl-toolbar {
|
|
12317
12297
|
--dxbl-toolbar-font-size: var(--bs-body-font-size) !important;
|
|
12318
12298
|
font-size: var(--dxbl-toolbar-font-size);
|