blue-web 1.4.0 → 1.5.0
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/js/all.bundle.js +2 -0
- package/dist/js/all.bundle.js.LICENSE.txt +5 -0
- package/dist/js/all.js +3 -0
- package/dist/js/button.bundle.js +1 -0
- package/dist/js/button.d.ts +1 -0
- package/dist/js/button.js +21 -0
- package/dist/style.css +24 -2
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +3 -3
- package/dist/style.scss +16 -15
- package/dist/styles/_button-icon-wrapper.scss +24 -0
- package/package.json +1 -1
package/dist/style.scss
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.
|
|
2
|
+
* Blue Web v1.5.0 (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
|
|
|
6
6
|
@import "./styles/bootstrap-variables";
|
|
7
7
|
@import "node_modules/bootstrap/scss/functions";
|
|
8
8
|
@import "node_modules/bootstrap/scss/variables";
|
|
9
|
-
@import "./styles/
|
|
9
|
+
@import "./styles/variables";
|
|
10
10
|
|
|
11
|
-
@import "./styles/
|
|
12
|
-
@import "./styles/
|
|
11
|
+
@import "./styles/mixins";
|
|
12
|
+
@import "./styles/keyframes";
|
|
13
13
|
|
|
14
14
|
@import "./styles/bootstrap";
|
|
15
15
|
|
|
@@ -20,18 +20,19 @@
|
|
|
20
20
|
border-color: var(--bs-primary, #{$form-check-input-checked-border-color});
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
@import "./styles/
|
|
24
|
-
@import "./styles/
|
|
25
|
-
@import "./styles/
|
|
26
|
-
@import "./styles/
|
|
27
|
-
@import "./styles/
|
|
28
|
-
@import "./styles/
|
|
23
|
+
@import "./styles/text-icons";
|
|
24
|
+
@import "./styles/general";
|
|
25
|
+
@import "./styles/router";
|
|
26
|
+
@import "./styles/status";
|
|
27
|
+
@import "./styles/layout";
|
|
28
|
+
@import "./styles/grid-layout";
|
|
29
29
|
@import "./styles/menu-item";
|
|
30
|
-
@import "./styles/
|
|
31
|
-
@import "./styles/
|
|
30
|
+
@import "./styles/sidebar";
|
|
31
|
+
@import "./styles/search";
|
|
32
32
|
@import "./styles/action-menu";
|
|
33
|
-
@import "./styles/
|
|
34
|
-
@import "./styles/
|
|
35
|
-
@import "./styles/
|
|
33
|
+
@import "./styles/caret";
|
|
34
|
+
@import "./styles/tooltips";
|
|
35
|
+
@import "./styles/hover";
|
|
36
|
+
@import "./styles/button-icon-wrapper";
|
|
36
37
|
@import "./styles/buttons";
|
|
37
38
|
@import "./styles/container-grid";
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Extending `.icon-link > .bi` by Bootstrap to allow wrapped icons.
|
|
2
|
+
|
|
3
|
+
.blue-btn-icon-wrapper {
|
|
4
|
+
display: contents;
|
|
5
|
+
|
|
6
|
+
& > * {
|
|
7
|
+
flex-shrink: 0;
|
|
8
|
+
@include transition($icon-link-icon-transition);
|
|
9
|
+
}
|
|
10
|
+
& > svg {
|
|
11
|
+
width: $icon-link-icon-size;
|
|
12
|
+
height: $icon-link-icon-size;
|
|
13
|
+
fill: currentcolor;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.icon-link-hover {
|
|
18
|
+
&:hover,
|
|
19
|
+
&:focus-visible {
|
|
20
|
+
.blue-btn-icon-wrapper > * {
|
|
21
|
+
transform: var(--#{$prefix}icon-link-transform, $icon-link-icon-transform);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|