@itwin/itwinui-css 0.46.0 → 0.46.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/css/all.css +3 -3
- package/css/popover.css +3 -3
- package/package.json +1 -1
- package/scss/popover/popover.scss +7 -6
package/css/all.css
CHANGED
|
@@ -4205,11 +4205,11 @@ html.iui-theme-dark{
|
|
|
4205
4205
|
box-shadow:0 0 0 0 rgba(var(--iui-color-foreground-accessory-rgb), 0); } } }
|
|
4206
4206
|
|
|
4207
4207
|
.iui-popover{ }
|
|
4208
|
-
.iui-popover[data-reference-hidden]{
|
|
4209
|
-
visibility:hidden;
|
|
4210
|
-
pointer-events:none; }
|
|
4211
4208
|
.iui-popover.tippy-box{
|
|
4212
4209
|
all:revert; }
|
|
4210
|
+
.iui-popover.tippy-box[data-reference-hidden]{
|
|
4211
|
+
visibility:visible;
|
|
4212
|
+
pointer-events:auto; }
|
|
4213
4213
|
.iui-popover .tippy-content{
|
|
4214
4214
|
all:revert; }
|
|
4215
4215
|
|
package/css/popover.css
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
4
|
*--------------------------------------------------------------------------------------------*/
|
|
5
5
|
.iui-popover{ }
|
|
6
|
-
.iui-popover[data-reference-hidden]{
|
|
7
|
-
visibility:hidden;
|
|
8
|
-
pointer-events:none; }
|
|
9
6
|
.iui-popover.tippy-box{
|
|
10
7
|
all:revert; }
|
|
8
|
+
.iui-popover.tippy-box[data-reference-hidden]{
|
|
9
|
+
visibility:visible;
|
|
10
|
+
pointer-events:auto; }
|
|
11
11
|
.iui-popover .tippy-content{
|
|
12
12
|
all:revert; }
|
package/package.json
CHANGED
|
@@ -4,17 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
// tippy.js helper class to hide Popover when it is scrolled out of view
|
|
6
6
|
@mixin iui-popover {
|
|
7
|
-
&[data-reference-hidden] {
|
|
8
|
-
visibility: hidden;
|
|
9
|
-
pointer-events: none;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
// Resets tippy.js default stylings that interfere with our own
|
|
13
7
|
/* stylelint-disable-next-line selector-class-pattern */
|
|
14
8
|
&.tippy-box {
|
|
9
|
+
&[data-reference-hidden] {
|
|
10
|
+
visibility: visible;
|
|
11
|
+
pointer-events: auto;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Resets tippy.js default stylings that interfere with our own
|
|
15
15
|
all: revert;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
// Resets tippy.js default stylings that interfere with our own
|
|
18
19
|
/* stylelint-disable-next-line selector-class-pattern */
|
|
19
20
|
.tippy-content {
|
|
20
21
|
all: revert;
|