[TWIG] Form layout is all new, since extending form_div_layout.html.twig was quite limiting

[COMPONENTS][Posting] It is now visible on Actor profiles [COMPONENTS][Search] Overall rework of search results template, there's also additional help text added [CSS] Header no longer translucent, font sizes yet more consistent, replies marker less pronounced, and font hierarchy is now applied in both weight and size
This commit is contained in:
2022-02-16 21:17:13 +00:00
committed by Diogo Peralta Cordeiro
parent b69f4a46c5
commit 03a475b642
11 changed files with 800 additions and 292 deletions

View File

@@ -75,7 +75,7 @@ class Posting extends Component
*/
public function onAddMainRightPanelBlock(Request $request, array &$res): bool
{
if (\is_null($user = Common::user()) || preg_match('(feed|conversation|group)', $request->get('_route')) === 0) {
if (\is_null($user = Common::user()) || preg_match('(feed|conversation|group|view)', $request->get('_route')) === 0) {
return Event::next;
}