aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-06-18 09:58:00 +0000
committerMario <mario@mariovavti.com>2021-06-18 09:58:00 +0000
commitec22ca75536e4c85b7a2721154a9d4e7148b2ffc (patch)
tree5e1e65b8a2bd2c62b5c5d0979ea9e40555ca4880
parentc42d8a81c729ff8441195371106e96d398210067 (diff)
downloadvolse-hubzilla-ec22ca75536e4c85b7a2721154a9d4e7148b2ffc.tar.gz
volse-hubzilla-ec22ca75536e4c85b7a2721154a9d4e7148b2ffc.tar.bz2
volse-hubzilla-ec22ca75536e4c85b7a2721154a9d4e7148b2ffc.zip
css and js fixes
-rw-r--r--boot.php2
-rw-r--r--view/css/widgets.css2
-rw-r--r--view/js/mod_hq.js2
3 files changed, 4 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index fb968dcec..1738b9592 100644
--- a/boot.php
+++ b/boot.php
@@ -53,7 +53,7 @@ require_once('include/bbcode.php');
require_once('include/items.php');
define ( 'PLATFORM_NAME', 'hubzilla' );
-define ( 'STD_VERSION', '5.9.5' );
+define ( 'STD_VERSION', '5.9.6' );
define ( 'ZOT_REVISION', '6.0' );
define ( 'DB_UPDATE_VERSION', 1245 );
diff --git a/view/css/widgets.css b/view/css/widgets.css
index f9e0770f8..a67c10ed2 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -245,7 +245,7 @@ a.wikilist {
/* hq_controls */
.hq_controls_fixed_bottom_center {
- z-index: 1090;
+ z-index: 1028;
position: fixed;
bottom: 0px;
left: 50%;
diff --git a/view/js/mod_hq.js b/view/js/mod_hq.js
index 0a3939913..362045412 100644
--- a/view/js/mod_hq.js
+++ b/view/js/mod_hq.js
@@ -3,11 +3,13 @@ $(document).ready(function() {
$(document).on('click', '#jot-toggle', function(e) {
$(window).scrollTop(0);
$('#jot-popup').toggle();
+ $('#profile-jot-text').focus();
});
$(document).on('click', '#notes-toggle', function(e) {
$(window).scrollTop(0);
$('#personal-notes').toggleClass('d-none');
+ $('#note-text').focus();
});
});