@cloudron/pankow 4.4.8 → 4.4.10
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 +10 -4
- package/package.json +1 -1
package/components/ListItem.vue
CHANGED
|
@@ -103,6 +103,7 @@ function onMenu(event) {
|
|
|
103
103
|
.pankow-list-item-center {
|
|
104
104
|
display: flex;
|
|
105
105
|
flex-direction: column;
|
|
106
|
+
gap: 3px;
|
|
106
107
|
min-width: 0;
|
|
107
108
|
flex: 1;
|
|
108
109
|
}
|
|
@@ -171,6 +172,15 @@ function onMenu(event) {
|
|
|
171
172
|
.pankow-list-item:hover .pankow-list-item-action-bar-menu-trigger {
|
|
172
173
|
display: none;
|
|
173
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
|
+
}
|
|
174
184
|
}
|
|
175
185
|
|
|
176
186
|
@media (hover: none) {
|
|
@@ -183,8 +193,4 @@ function onMenu(event) {
|
|
|
183
193
|
}
|
|
184
194
|
}
|
|
185
195
|
|
|
186
|
-
.pankow-list-item-action-bar.is-menu-open .pankow-list-item-action-bar-menu-trigger {
|
|
187
|
-
display: block !important;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
196
|
</style>
|