@brightspace-ui/core 2.179.1 → 2.179.2
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.
@@ -355,22 +355,22 @@ class Tooltip extends RtlMixin(LitElement) {
|
|
355
355
|
width: 100%;
|
356
356
|
}
|
357
357
|
|
358
|
-
:host([_open-dir="bottom"]) .d2l-tooltip-container {
|
358
|
+
:host([_open-dir="bottom"][showing]) .d2l-tooltip-container {
|
359
359
|
-webkit-animation: d2l-tooltip-bottom-animation 200ms ease;
|
360
360
|
animation: d2l-tooltip-bottom-animation 200ms ease;
|
361
361
|
}
|
362
362
|
|
363
|
-
:host([_open-dir="top"]) .d2l-tooltip-container {
|
363
|
+
:host([_open-dir="top"][showing]) .d2l-tooltip-container {
|
364
364
|
-webkit-animation: d2l-tooltip-top-animation 200ms ease;
|
365
365
|
animation: d2l-tooltip-top-animation 200ms ease;
|
366
366
|
}
|
367
367
|
|
368
|
-
:host([_open-dir="left"]) .d2l-tooltip-container {
|
368
|
+
:host([_open-dir="left"][showing]) .d2l-tooltip-container {
|
369
369
|
-webkit-animation: d2l-tooltip-left-animation 200ms ease;
|
370
370
|
animation: d2l-tooltip-left-animation 200ms ease;
|
371
371
|
}
|
372
372
|
|
373
|
-
:host([_open-dir="right"]) .d2l-tooltip-container {
|
373
|
+
:host([_open-dir="right"][showing]) .d2l-tooltip-container {
|
374
374
|
-webkit-animation: d2l-tooltip-right-animation 200ms ease;
|
375
375
|
animation: d2l-tooltip-right-animation 200ms ease;
|
376
376
|
}
|
@@ -387,10 +387,10 @@ class Tooltip extends RtlMixin(LitElement) {
|
|
387
387
|
}
|
388
388
|
|
389
389
|
@media (prefers-reduced-motion: reduce) {
|
390
|
-
:host([_open-dir="bottom"]) .d2l-tooltip-container,
|
391
|
-
:host([_open-dir="top"]) .d2l-tooltip-container,
|
392
|
-
:host([_open-dir="left"]) .d2l-tooltip-container,
|
393
|
-
:host([_open-dir="right"]) .d2l-tooltip-container {
|
390
|
+
:host([_open-dir="bottom"][showing]) .d2l-tooltip-container,
|
391
|
+
:host([_open-dir="top"][showing]) .d2l-tooltip-container,
|
392
|
+
:host([_open-dir="left"][showing]) .d2l-tooltip-container,
|
393
|
+
:host([_open-dir="right"][showing]) .d2l-tooltip-container {
|
394
394
|
-webkit-animation: none;
|
395
395
|
animation: none;
|
396
396
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "2.179.
|
3
|
+
"version": "2.179.2",
|
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",
|