mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-24 16:58:47 +01:00
Prevent nested 'Read more's
This commit is contained in:
parent
1f584f945a
commit
3d06662559
1 changed files with 4 additions and 1 deletions
|
@ -93,7 +93,10 @@
|
|||
text-decoration: none;
|
||||
color: var(--text-color);
|
||||
}
|
||||
.status-card-link:not(.status-card-link .status-card-link):has(.truncated) {
|
||||
.status-card-link:not(
|
||||
.truncated .status-card-link, /* parent status already truncated */
|
||||
.status-card-link .status-card-link /* nested status cards */
|
||||
):has(.truncated) {
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
|
|
Loading…
Reference in a new issue