@brightspace-ui/core 2.54.4 → 2.54.6
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.
|
@@ -184,10 +184,13 @@ class Tooltip extends RtlMixin(LitElement) {
|
|
|
184
184
|
box-sizing: border-box;
|
|
185
185
|
color: white;
|
|
186
186
|
display: inline-block;
|
|
187
|
+
height: 0;
|
|
188
|
+
overflow: hidden;
|
|
187
189
|
position: absolute;
|
|
188
190
|
text-align: left;
|
|
189
191
|
visibility: hidden;
|
|
190
192
|
white-space: normal;
|
|
193
|
+
width: 0;
|
|
191
194
|
z-index: 1001; /* position on top of floating buttons */
|
|
192
195
|
}
|
|
193
196
|
|
|
@@ -200,8 +203,12 @@ class Tooltip extends RtlMixin(LitElement) {
|
|
|
200
203
|
text-align: right;
|
|
201
204
|
}
|
|
202
205
|
|
|
206
|
+
:host([force-show]),
|
|
203
207
|
:host([showing]) {
|
|
208
|
+
height: auto;
|
|
209
|
+
overflow: visible;
|
|
204
210
|
visibility: visible;
|
|
211
|
+
width: auto;
|
|
205
212
|
}
|
|
206
213
|
|
|
207
214
|
.d2l-tooltip-pointer {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.54.
|
|
3
|
+
"version": "2.54.6",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|