[CSS] Fix: Left and right panel checkbox border when active.

This commit is contained in:
Eliseu Amaro 2021-10-04 12:31:06 +01:00
parent 0dfb41230e
commit 17a13b3f20
3 changed files with 6 additions and 12 deletions

View File

@ -7,10 +7,7 @@
position: absolute; position: absolute;
top: -100%; top: -100%;
} }
#panel-left-toggle:focus + * {
border-radius: 4px;
border: 2px solid var(--white);
}
#panel-left-icon { #panel-left-icon {
cursor: pointer !important; cursor: pointer !important;
border: 2px solid transparent; border: 2px solid transparent;

View File

@ -7,10 +7,7 @@
position: absolute; position: absolute;
top: -100%; top: -100%;
} }
#panel-right-toggle:focus + * {
border-radius: 4px;
border: 2px solid var(--white);
}
#panel-right-icon { #panel-right-icon {
margin-left: var(--unit-size); margin-left: var(--unit-size);
cursor: pointer !important; cursor: pointer !important;

View File

@ -62,7 +62,7 @@ class Network extends Controller
return [ return [
'_template' => 'network/feed.html.twig', '_template' => 'network/feed.html.twig',
'notes' => $notes_out, 'notes' => $notes_out,
'page_title' => 'Public timeline.', 'page_title' => 'Public timeline',
]; ];
} }
@ -106,7 +106,7 @@ END;
return [ return [
'_template' => 'network/feed.html.twig', '_template' => 'network/feed.html.twig',
'notes' => $notes_out, 'notes' => $notes_out,
'page_title' => 'Home timeline.', 'page_title' => 'Home timeline',
]; ];
} }
@ -120,7 +120,7 @@ END;
return [ return [
'_template' => 'network/feed.html.twig', '_template' => 'network/feed.html.twig',
'notes' => $notes_out, 'notes' => $notes_out,
'page_title' => 'Network timeline.', 'page_title' => 'Network timeline',
]; ];
} }
@ -137,7 +137,7 @@ END;
return [ return [
'_template' => 'network/feed.html.twig', '_template' => 'network/feed.html.twig',
'notes' => $notes_out, 'notes' => $notes_out,
'page_title' => 'Replies timeline.', 'page_title' => 'Replies timeline',
]; ];
} }
} }