allow post_utilities to contain div and span elements in the exact next level in addition to anchors

This commit is contained in:
Hendrik L 2024-07-10 15:51:32 +02:00 committed by Hendrik L
parent 285d9f525d
commit 13b1c7984d
2 changed files with 3 additions and 3 deletions

View file

@ -765,13 +765,13 @@ div.navbar {
bottom: -12px; bottom: -12px;
left: 10px; left: 10px;
} }
.post_list .post_teaser .main_row .post_utilities a { .post_list .post_teaser .main_row .post_utilities a, .post_list .post_teaser .main_row .post_utilities > div, .post_list .post_teaser .main_row .post_utilities > span {
display: inline-block; display: inline-block;
min-width: 44px; min-width: 44px;
line-height: 44px; line-height: 44px;
text-align: center; text-align: center;
} }
.post_list .post_teaser .main_row .post_utilities a:first-child { .post_list .post_teaser .main_row .post_utilities a:first-child, .post_list .post_teaser .main_row .post_utilities > div:first-child, .post_list .post_teaser .main_row .post_utilities > span:first-child {
text-align: left; text-align: left;
} }
.post_list .post_teaser .main_row .post_options { .post_list .post_teaser .main_row .post_options {

View file

@ -356,7 +356,7 @@ div.navbar {
position: absolute; position: absolute;
bottom: -12px; bottom: -12px;
left: 10px; left: 10px;
a { a, > div, > span {
display: inline-block; display: inline-block;
min-width: 44px; min-width: 44px;
line-height: 44px; line-height: 44px;