mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
css fixes
This commit is contained in:
2
boot.php
2
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);
|
||||
|
||||
@@ -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 */
|
||||
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user