@cloudron/pankow 4.4.9 → 4.4.11
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/components/ListItem.vue +9 -4
- package/package.json +1 -1
package/components/ListItem.vue
CHANGED
|
@@ -172,6 +172,15 @@ function onMenu(event) {
|
|
|
172
172
|
.pankow-list-item:hover .pankow-list-item-action-bar-menu-trigger {
|
|
173
173
|
display: none;
|
|
174
174
|
}
|
|
175
|
+
|
|
176
|
+
/* Keep the desktop trigger as the menu anchor while open (including during hover). */
|
|
177
|
+
.pankow-list-item-action-bar.is-menu-open .pankow-list-item-action-bar-menu-trigger {
|
|
178
|
+
display: flex !important;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.pankow-list-item-action-bar.is-menu-open .pankow-list-item-action-bar-quick-actions {
|
|
182
|
+
display: none !important;
|
|
183
|
+
}
|
|
175
184
|
}
|
|
176
185
|
|
|
177
186
|
@media (hover: none) {
|
|
@@ -184,8 +193,4 @@ function onMenu(event) {
|
|
|
184
193
|
}
|
|
185
194
|
}
|
|
186
195
|
|
|
187
|
-
.pankow-list-item-action-bar.is-menu-open .pankow-list-item-action-bar-menu-trigger {
|
|
188
|
-
display: block !important;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
196
|
</style>
|