thonon-agglomeration-2021: add .inline-links-list class option for cell links-list (#86685)
gitea/publik-base-theme/pipeline/head This commit looks good Details

This commit is contained in:
Thomas Jund 2024-02-07 15:38:02 +01:00 committed by Thomas Jund
parent 902869107c
commit 793b3503b6
1 changed files with 30 additions and 0 deletions

View File

@ -451,6 +451,36 @@ $cell-additional-padding : 10px;
}
}
// inline links list
.inline-links-list {
.gru-content &.cell {
.links-list ul {
text-align: center;
> li {
display: inline-block;
div.description {
display: none;
}
}
> li > a {
&::before {
content: none;
}
@extend %button2;
--color: #{$blue-dark};
font-weight: bold !important;
margin-right: 0;
&:hover {
box-shadow: none;
}
&:not(:hover) {
border-color: transparent;
}
}
}
}
}
#sidebar .cell {
@extend .gray-cell;
}