blue-react 9.1.3 → 9.1.5

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/style.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Blue React v9.1.3-alpha2 (https://bruegmann.github.io/blue-react)
2
+ * Blue React v9.1.5-alpha2 (https://bruegmann.github.io/blue-react)
3
3
  * Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-react/blob/master/LICENSE).
4
4
  */
5
5
 
@@ -53,16 +53,13 @@
53
53
  text-align: center;
54
54
 
55
55
  min-width: 3em;
56
- max-width: 21em;
57
- white-space: nowrap;
58
- overflow: hidden;
59
- text-overflow: ellipsis;
56
+ max-width: var(--bs-tooltip-max-width, 21em);
60
57
 
61
- padding: 1ch 1.5ch;
62
- border-radius: 0.3em;
58
+ padding: var(--bs-tooltip-padding-y, 1ch) var(--bs-tooltip-padding-x, 1.5ch);
59
+ border-radius: var(--bs-tooltip-border-radius, 0.3em);
63
60
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
64
- background: #353539;
65
- color: #fff;
61
+ background: var(--bs-tooltip-bg, #353539);
62
+ color: var(--bs-tooltip-color, #fff);
66
63
  z-index: 1000;
67
64
  }
68
65
  // show the [data-tooltip]
@@ -76,7 +73,7 @@
76
73
  &::before {
77
74
  bottom: 100%;
78
75
  border-bottom-width: 0;
79
- border-top-color: #353539;
76
+ border-top-color: var(--bs-tooltip-bg, #353539);
80
77
  }
81
78
  &::after {
82
79
  bottom: calc(100% + 5px);
@@ -92,7 +89,7 @@
92
89
  &::before {
93
90
  top: 100%;
94
91
  border-top-width: 0;
95
- border-bottom-color: #353539;
92
+ border-bottom-color: var(--bs-tooltip-bg, #353539);
96
93
  }
97
94
  &::after {
98
95
  top: calc(100% + 5px);
@@ -129,7 +126,7 @@
129
126
  &::before {
130
127
  top: 50%;
131
128
  border-right-width: 0;
132
- border-left-color: #353539;
129
+ border-left-color: var(--bs-tooltip-bg, #353539);
133
130
  left: calc(0em - 5px);
134
131
  transform: translate(0.5em, -50%);
135
132
  }
@@ -144,7 +141,7 @@
144
141
  &::before {
145
142
  top: 50%;
146
143
  border-left-width: 0;
147
- border-right-color: #353539;
144
+ border-right-color: var(--bs-tooltip-bg, #353539);
148
145
  right: calc(0em - 5px);
149
146
  transform: translate(-0.5em, -50%);
150
147
  }
@@ -158,12 +158,6 @@
158
158
  @include scroll-shadow(var(--blue-sidebar-bg), $sidebar-bg);
159
159
  }
160
160
 
161
- &:hover {
162
- .blue-menu-item {
163
- background-color: var(--blue-sidebar-bg);
164
- }
165
- }
166
-
167
161
  .blue-menu-item {
168
162
  & > * {
169
163
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blue-react",
3
- "version": "9.1.3",
3
+ "version": "9.1.5",
4
4
  "description": "Blue React Components",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "main": "index.js",