From 793b3503b6f2b6bf1abb9ab08e104cbad4cd5866 Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Wed, 7 Feb 2024 15:38:02 +0100 Subject: [PATCH] thonon-agglomeration-2021: add .inline-links-list class option for cell links-list (#86685) --- static/thonon-agglomeration-2021/_custom.scss | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/static/thonon-agglomeration-2021/_custom.scss b/static/thonon-agglomeration-2021/_custom.scss index e4fd0d2c..981a4642 100644 --- a/static/thonon-agglomeration-2021/_custom.scss +++ b/static/thonon-agglomeration-2021/_custom.scss @@ -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; }