aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-05-19 07:22:10 +0000
committerMario <mario@mariovavti.com>2022-05-19 07:22:10 +0000
commit8928b24e2329df74801fbd61666693ae7719fb86 (patch)
tree07899630dc0365346943b7593f8cc614ad4b44a3
parentae9a9191f3e8f179ba38c9aad7ad6cee6603238e (diff)
downloadvolse-hubzilla-8928b24e2329df74801fbd61666693ae7719fb86.tar.gz
volse-hubzilla-8928b24e2329df74801fbd61666693ae7719fb86.tar.bz2
volse-hubzilla-8928b24e2329df74801fbd61666693ae7719fb86.zip
rendering fixes
-rw-r--r--Zotlabs/Lib/Activity.php24
-rw-r--r--view/css/conversation.css4
-rw-r--r--view/theme/redbasic/css/style.css2
-rw-r--r--view/theme/redbasic/schema/Focus-Boxy.css9
4 files changed, 22 insertions, 17 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index c926bdf34..8be3aa036 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -2433,7 +2433,7 @@ class Activity {
if (array_key_exists('type', $act->obj)) {
if ($act->obj['type'] === 'Note' && $s['attach']) {
- $s['body'] = self::bb_attach($s['attach'], $s['body']) . $s['body'];
+ $s['body'] = self::bb_attach($s['attach'], $s['body']) . "\r\n" . $s['body'];
}
if ($act->obj['type'] === 'Question' && in_array($act->type, ['Create', 'Update'])) {
@@ -2522,13 +2522,13 @@ class Activity {
usort($mps,[ '\Zotlabs\Lib\Activity', 'vid_sort' ]);
foreach ($mps as $m) {
if (intval($m['height']) < 500 && Activity::media_not_in_body($m['href'],$s['body'])) {
- $s['body'] = $tag . $m['href'] . '[/video]' . "\n\n" . $s['body'];
+ $s['body'] = $tag . $m['href'] . '[/video]' . "\r\n" . $s['body'];
break;
}
}
}
elseif (is_string($act->obj['url']) && Activity::media_not_in_body($act->obj['url'],$s['body'])) {
- $s['body'] = $tag . $act->obj['url'] . '[/video]' . "\n\n" . $s['body'];
+ $s['body'] = $tag . $act->obj['url'] . '[/video]' . "\r\n" . $s['body'];
}
}
@@ -2554,13 +2554,13 @@ class Activity {
}
foreach ($ptr as $vurl) {
if (in_array($vurl['mediaType'], $atypes) && self::media_not_in_body($vurl['href'], $s['body'])) {
- $s['body'] = '[audio]' . $vurl['href'] . '[/audio]' . "\n\n" . $s['body'];
+ $s['body'] = '[audio]' . $vurl['href'] . '[/audio]' . "\r\n" . $s['body'];
break;
}
}
}
elseif (is_string($act->obj['url']) && self::media_not_in_body($act->obj['url'], $s['body'])) {
- $s['body'] = '[audio]' . $act->obj['url'] . '[/audio]' . "\n\n" . $s['body'];
+ $s['body'] = '[audio]' . $act->obj['url'] . '[/audio]' . "\r\n" . $s['body'];
}
}
@@ -2580,7 +2580,7 @@ class Activity {
}
foreach ($ptr as $vurl) {
if (strpos($s['body'], $vurl['href']) === false) {
- $bb_imgs = '[zmg]' . $vurl['href'] . '[/zmg]' . "\n\n";
+ $bb_imgs = '[zmg]' . $vurl['href'] . '[/zmg]' . "\r\n";
break;
}
}
@@ -2588,7 +2588,7 @@ class Activity {
}
elseif (is_string($act->obj['url'])) {
if (strpos($s['body'], $act->obj['url']) === false) {
- $s['body'] .= '[zmg]' . $act->obj['url'] . '[/zmg]' . "\n\n" . $s['body'];
+ $s['body'] .= '[zmg]' . $act->obj['url'] . '[/zmg]' . "\r\n" . $s['body'];
}
}
}
@@ -2625,10 +2625,10 @@ class Activity {
if ($purl) {
$li = z_fetch_url(z_root() . '/linkinfo?binurl=' . bin2hex($purl));
if ($li['success'] && $li['body']) {
- $s['body'] .= "\n" . $li['body'];
+ $s['body'] .= "\r\n" . $li['body'];
}
else {
- $s['body'] .= "\n\n" . $purl;
+ $s['body'] .= "\r\n" . $purl;
}
}
}
@@ -3590,17 +3590,17 @@ class Activity {
foreach ($attach as $a) {
if (array_key_exists('type', $a) && stripos($a['type'], 'image') !== false) {
if (self::media_not_in_body($a['href'], $body)) {
- $ret .= "\n\n" . '[img]' . $a['href'] . '[/img]';
+ $ret .= "\r\n" . '[img]' . $a['href'] . '[/img]';
}
}
if (array_key_exists('type', $a) && stripos($a['type'], 'video') !== false) {
if (self::media_not_in_body($a['href'], $body)) {
- $ret .= "\n\n" . '[video]' . $a['href'] . '[/video]';
+ $ret .= "\r\n" . '[video]' . $a['href'] . '[/video]';
}
}
if (array_key_exists('type', $a) && stripos($a['type'], 'audio') !== false) {
if (self::media_not_in_body($a['href'], $body)) {
- $ret .= "\n\n" . '[audio]' . $a['href'] . '[/audio]';
+ $ret .= "\r\n" . '[audio]' . $a['href'] . '[/audio]';
}
}
}
diff --git a/view/css/conversation.css b/view/css/conversation.css
index 9ea668963..b6d47e3c3 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -104,11 +104,11 @@
.wall-item-info {
display: block;
float: left;
- margin-right: 10px;
+ margin-right: .75rem;
}
.wall-item-wrapper {
- margin-left:10px;
+ margin-left: .75rem;
}
.wall-item-photo-wrapper {
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index ebbc1aaa3..3b2370b7f 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -845,7 +845,7 @@ div.jGrowl div.jGrowl-notification {
.shared_header img {
border-radius: $radius;
- margin-right: 10px;
+ margin-right: .75rem;
}
.tag1 {
diff --git a/view/theme/redbasic/schema/Focus-Boxy.css b/view/theme/redbasic/schema/Focus-Boxy.css
index 90fd51b02..1b09137a9 100644
--- a/view/theme/redbasic/schema/Focus-Boxy.css
+++ b/view/theme/redbasic/schema/Focus-Boxy.css
@@ -1,11 +1,16 @@
.comment .wall-item-body {
- padding-left: 42px;
+ padding-left: 3rem;
}
-.wall-item-content-wrapper.comment {
+.wall-item-content-wrapper {
border-bottom: 1px solid rgba(0,0,0,.125);
}
+.hide-comments-outer,
+.hide-comments-outer:hover {
+ border: 0;
+}
+
.widget {
border: 1px solid rgba(0,0,0,.125);
}