diff --git a/boot.php b/boot.php index 2fd9e8ee1..3f494f600 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.63'); +define('STD_VERSION', '10.3.64'); define('ZOT_REVISION', '6.0'); define('DB_UPDATE_VERSION', 1263); diff --git a/view/css/conversation.css b/view/css/conversation.css index ff4217e13..80c365bed 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -271,12 +271,22 @@ a.wall-item-name-link { .wall-item-expanded { position: relative; - border: 1px solid var(--bs-danger); border-radius: var(--bs-border-radius); background-color: var(--bs-body-bg); z-index: 2; } +.wall-item-expanded:after { + content: ''; + position: absolute; + pointer-events: none; + box-shadow: 0 0 0 1px var(--hz-item-highlight); + border-radius: var(--bs-border-radius); + width: 100%; + top: 0; + bottom: 0; +} + /* comment_item */ diff --git a/view/js/main.js b/view/js/main.js index eed1a21f1..39f01190e 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1729,7 +1729,7 @@ function stringToHslColor(str) { let stringUniqueHash = [...str].reduce((acc, char) => { return char.charCodeAt(0) + ((acc << 5) - acc); }, 0); - return `hsl(${stringUniqueHash % 360}, 75%, 50%)`; + return `hsl(${stringUniqueHash % 360}, 30%, 50%)`; } function dolike(ident, verb) {