css fixes

This commit is contained in:
Mario
2025-06-09 14:11:20 +00:00
parent f8fb1bc3b4
commit 9eecd0aa3c
3 changed files with 13 additions and 3 deletions

View File

@@ -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);

View File

@@ -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 */

View File

@@ -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) {