aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2025-06-01 04:57:05 +0000
committerMario <mario@mariovavti.com>2025-06-01 04:57:05 +0000
commitd0686796cd487bf0375995854e33d83059a0482b (patch)
tree48127552bed3add31440e85206977126399feb2f
parent3ea323bfb0a7f6371ca48c65a18bc0080988e705 (diff)
downloadvolse-hubzilla-d0686796cd487bf0375995854e33d83059a0482b.tar.gz
volse-hubzilla-d0686796cd487bf0375995854e33d83059a0482b.tar.bz2
volse-hubzilla-d0686796cd487bf0375995854e33d83059a0482b.zip
it is the fill: both option that woes with dropdown visibility - set it to none
-rw-r--r--boot.php2
-rw-r--r--view/css/conversation.css7
-rw-r--r--view/js/main.js4
3 files changed, 3 insertions, 10 deletions
diff --git a/boot.php b/boot.php
index 0a84b8908..6dd2c9db0 100644
--- a/boot.php
+++ b/boot.php
@@ -70,7 +70,7 @@ require_once('include/security.php');
define('PLATFORM_NAME', 'hubzilla');
-define('STD_VERSION', '10.3.44');
+define('STD_VERSION', '10.3.45');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1263);
diff --git a/view/css/conversation.css b/view/css/conversation.css
index d9b410ec0..d8a893b0e 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -96,13 +96,6 @@
/* conv_item */
-.thread-wrapper {
- /* fix issue where dropdown menus of dynamically loaded content
- * are hidden behind its following thread-wrapper for whatever reason
- */
- z-index: inherit;
-}
-
.wall-item-wrapper {
margin-left: .75rem;
}
diff --git a/view/js/main.js b/view/js/main.js
index 73d27f94c..f7eed09cb 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1437,13 +1437,13 @@ function injectWithAnimation(containerId, parsedDoc, overwrite = false) {
const el = newElements[i].cloneNode(true);
container.insertBefore(el, container.firstChild);
- el.animate([
+ const animation = el.animate([
{ opacity: 0, transform: 'scale(.7) translateY(-20px)' },
{ opacity: 1, transform: 'scale(1) translateY(0)' }
], {
duration: 300,
delay: (newElements.length - 1 - i) * 50,
- fill: 'both',
+ fill: 'none',
easing: 'ease-out'
});
}