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/style.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
|
|
|
@@ -15,19 +15,27 @@
|
|
|
15
15
|
|
|
16
16
|
@import "./styles/bootstrap";
|
|
17
17
|
|
|
18
|
-
//
|
|
19
|
-
//
|
|
18
|
+
// Make it overridable via CSS variables, as it is not yet possible in Bootstrap.
|
|
19
|
+
// Check with a newer Bootstrap version to see if it is still necessary.
|
|
20
20
|
.form-check-input:checked {
|
|
21
21
|
background-color: var(--bs-primary, #{$form-check-input-checked-bg-color});
|
|
22
22
|
border-color: var(--bs-primary, #{$form-check-input-checked-border-color});
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
// Resets cursor from Bootstrap' _reboot.scss based on option.
|
|
26
|
+
@if ($enable-button-pointers: false) {
|
|
27
|
+
summary,
|
|
28
|
+
[role="button"] {
|
|
29
|
+
cursor: unset;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
25
33
|
@import "./styles/text-icons";
|
|
26
34
|
@import "./styles/general";
|
|
27
35
|
@import "./styles/status";
|
|
28
36
|
@import "./styles/menu-item";
|
|
29
37
|
@import "./styles/page-header";
|
|
30
|
-
@import "./styles/
|
|
38
|
+
@import "./styles/input-group";
|
|
31
39
|
@import "./styles/action-menu";
|
|
32
40
|
@import "./styles/caret";
|
|
33
41
|
@import "./styles/tooltips";
|
|
@@ -41,3 +41,5 @@ $link-hover-decoration: underline !default;
|
|
|
41
41
|
// In a future Bootstrap release, this might not be necessary anymore.
|
|
42
42
|
$focus-ring-color: #{rgba(var(--bs-primary-rgb), 25%)} !default;
|
|
43
43
|
$input-focus-border-color: #{rgba(var(--bs-primary-rgb), 50%)} !default;
|
|
44
|
+
|
|
45
|
+
$enable-button-pointers: false !default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.blue-input-group {
|
|
2
|
+
border: $input-border-width solid $input-border-color;
|
|
3
|
+
border-radius: $input-border-radius;
|
|
4
|
+
background-color: $input-bg;
|
|
5
|
+
|
|
6
|
+
&.focus,
|
|
7
|
+
&:has(input:focus) {
|
|
8
|
+
box-shadow: $input-btn-focus-box-shadow;
|
|
9
|
+
border-color: $input-focus-border-color;
|
|
10
|
+
|
|
11
|
+
.input-group-text {
|
|
12
|
+
color: #{var(--bs-primary-text-emphasis)};
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.input-group-text {
|
|
17
|
+
border-color: transparent;
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.form-control {
|
|
22
|
+
border: none;
|
|
23
|
+
background-color: transparent !important;
|
|
24
|
+
|
|
25
|
+
&:focus {
|
|
26
|
+
box-shadow: none;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
package/dist/styles/_tabs.scss
CHANGED
package/package.json
CHANGED
package/dist/styles/_search.scss
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
.blue-search {
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
border: $input-border-width solid $input-border-color;
|
|
5
|
-
border-radius: $input-border-radius;
|
|
6
|
-
background-color: $input-bg;
|
|
7
|
-
|
|
8
|
-
&.blue-search-body {
|
|
9
|
-
border: 1px solid $input-border-color;
|
|
10
|
-
|
|
11
|
-
.blue-search-input-group {
|
|
12
|
-
display: flex;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&.focus {
|
|
16
|
-
box-shadow: $input-btn-focus-box-shadow;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&.focus {
|
|
21
|
-
box-shadow: inset $input-btn-focus-box-shadow;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.blue-sidebar .blue-search:not(.blue-search-body) {
|
|
26
|
-
margin-left: map-get($spacers, 1);
|
|
27
|
-
margin-right: map-get($spacers, 1);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.blue-search-input-group {
|
|
31
|
-
display: none;
|
|
32
|
-
|
|
33
|
-
.input-group-text {
|
|
34
|
-
border-color: transparent;
|
|
35
|
-
background-color: transparent;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.blue-search-control {
|
|
40
|
-
border: none;
|
|
41
|
-
background-color: transparent !important;
|
|
42
|
-
|
|
43
|
-
&:focus {
|
|
44
|
-
box-shadow: none;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.blue-search-reset-btn {
|
|
49
|
-
color: rgba($input-color, 0.7);
|
|
50
|
-
|
|
51
|
-
&:hover {
|
|
52
|
-
color: $input-color;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.blue-search.blue-search-sidebar {
|
|
57
|
-
transition: opacity 0.2s ease-in-out;
|
|
58
|
-
|
|
59
|
-
@media (prefers-reduced-motion) {
|
|
60
|
-
transition: none;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.blue-search.blue-search-sidebar:not(:hover):not(.focus) {
|
|
65
|
-
opacity: 0.7;
|
|
66
|
-
}
|