[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
vanhempi 0dfb41230e
commit 17a13b3f20
3 muutettua tiedostoa jossa 6 lisäystä ja 12 poistoa

Näytä tiedosto

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

Näytä tiedosto

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

Näytä tiedosto

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