noph-ui 0.12.11 → 0.12.13
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.
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
role="none"
|
|
36
36
|
class="np-backdrop"
|
|
37
37
|
onclick={() => {
|
|
38
|
-
|
|
38
|
+
hidePopover()
|
|
39
39
|
}}
|
|
40
40
|
></div>
|
|
41
41
|
<div class="np-dialog" role="dialog">
|
|
@@ -86,17 +86,14 @@
|
|
|
86
86
|
position: relative;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
.np-animate {
|
|
89
|
+
.np-animate[popover] {
|
|
90
90
|
transition:
|
|
91
|
+
opacity 0.25s ease,
|
|
91
92
|
display 0.25s allow-discrete,
|
|
92
93
|
overlay 0.25s allow-discrete;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.np-animate[popover] .np-dialog {
|
|
96
|
-
transition: opacity 0.25s ease;
|
|
97
94
|
opacity: 0;
|
|
98
95
|
}
|
|
99
|
-
.np-animate:popover-open
|
|
96
|
+
.np-animate[popover]:popover-open {
|
|
100
97
|
opacity: 1;
|
|
101
98
|
@starting-style {
|
|
102
99
|
opacity: 0;
|
|
@@ -108,16 +105,6 @@
|
|
|
108
105
|
background-color: var(--np-color-scrim);
|
|
109
106
|
opacity: 0.38;
|
|
110
107
|
}
|
|
111
|
-
.np-animate[popover] .np-backdrop {
|
|
112
|
-
opacity: 0;
|
|
113
|
-
transition: opacity 0.25s ease;
|
|
114
|
-
}
|
|
115
|
-
.np-animate[popover]:popover-open .np-backdrop {
|
|
116
|
-
opacity: 0.38;
|
|
117
|
-
@starting-style {
|
|
118
|
-
opacity: 0;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
108
|
|
|
122
109
|
.np-dialog-icon {
|
|
123
110
|
color: var(--np-color-secondary);
|
|
@@ -65,11 +65,13 @@
|
|
|
65
65
|
transform: translateX(-100%);
|
|
66
66
|
transition: transform 0.25s ease;
|
|
67
67
|
}
|
|
68
|
+
|
|
68
69
|
.np-navigation-drawer-container[popover] {
|
|
69
70
|
transition:
|
|
70
71
|
overlay 0.25s allow-discrete,
|
|
71
72
|
display 0.25s allow-discrete;
|
|
72
73
|
}
|
|
74
|
+
|
|
73
75
|
.np-navigation-drawer-container:popover-open .np-navigation-wrapper {
|
|
74
76
|
transform: translateX(0);
|
|
75
77
|
@starting-style {
|