diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-10-16 11:07:56 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-10-16 11:07:56 +0200 |
| commit | 609e0bf8fa3dc7981da685163f4dde2f53572ecb (patch) | |
| tree | b41ef49d70211dee02a6a7f604d8509ac801016b | |
| parent | 2fffc8a81a1f3c3665efac516aab93e823e6cd14 (diff) | |
restore activity feed icon colors, fixes #5939
Closes #5939
Merge request studip/studip!4544
| -rw-r--r-- | resources/assets/stylesheets/mixins/studip.scss | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/resources/assets/stylesheets/mixins/studip.scss b/resources/assets/stylesheets/mixins/studip.scss index c71d4e3..87b26a3 100644 --- a/resources/assets/stylesheets/mixins/studip.scss +++ b/resources/assets/stylesheets/mixins/studip.scss @@ -124,7 +124,6 @@ background-color: currentColor; mask: url("#{$svg}") no-repeat center / contain; vertical-align: $align; - @if $position == before { margin-right: $padding; @@ -137,7 +136,7 @@ // Mixin that replaces the navigation icon tags with css images @mixin navigation-icon($default-icon-name, $toggled-icon-name) { - img { display: none; } + svg { display: none; } display: inline-block; vertical-align: bottom; @@ -146,6 +145,11 @@ @include hide-text; @include square($icon-size-default); + color: var(--color--content-link); + &:hover { + color: var(--color--content-link-hover); + } + &.toggled { @include icon(before, $toggled-icon-name, $size: $icon-size-default); } |
