diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-20 14:20:56 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-20 14:20:56 +0200 |
| commit | 6555f37b56c537c09f8ec12a4a20c6d22af6094d (patch) | |
| tree | f62ec2f62c0b6100cccf3a1ff75c66cf7d922503 | |
| parent | c08a2211be28631fbeb5789f142472994abfc9d3 (diff) | |
fix little layout glitches, fixes #5836
Closes #5836
Merge request studip/studip!4450
| -rw-r--r-- | resources/assets/stylesheets/scss/header.scss | 1 | ||||
| -rw-r--r-- | resources/assets/stylesheets/scss/responsive.scss | 6 | ||||
| -rw-r--r-- | templates/tabs.php | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/resources/assets/stylesheets/scss/header.scss b/resources/assets/stylesheets/scss/header.scss index 8a30c0f..b06c31f 100644 --- a/resources/assets/stylesheets/scss/header.scss +++ b/resources/assets/stylesheets/scss/header.scss @@ -182,7 +182,6 @@ } #fullscreen-on { - color: var(--color--highlight); svg { vertical-align: middle; } diff --git a/resources/assets/stylesheets/scss/responsive.scss b/resources/assets/stylesheets/scss/responsive.scss index f23cb04..32561ce 100644 --- a/resources/assets/stylesheets/scss/responsive.scss +++ b/resources/assets/stylesheets/scss/responsive.scss @@ -18,7 +18,7 @@ $sidebarOut: -330px; #responsive-toggle-fullscreen, #responsive-toggle-focusmode { - img { + svg { cursor: pointer; } } @@ -30,7 +30,7 @@ $sidebarOut: -330px; padding: 0; } - img { + svg { cursor: pointer; vertical-align: middle; } @@ -165,7 +165,7 @@ $sidebarOut: -330px; &.navigation-up, &.navigation-current { .navigation-icon { - img { + svg { padding-top: 0; } } diff --git a/templates/tabs.php b/templates/tabs.php index fa7ca27..ae1f409 100644 --- a/templates/tabs.php +++ b/templates/tabs.php @@ -45,7 +45,7 @@ foreach (Navigation::getItem("/")->getSubNavigation() as $path => $nav) { <? endif; ?> <? if (User::findCurrent()) : ?> <div id="non-responsive-toggle-fullscreen"> - <button class="styleless" id="fullscreen-on" + <button class="as-link" id="fullscreen-on" title="<?= _('Kompakte Navigation aktivieren') ?>"> <?= Icon::create('screen-compact')->asSvg(24) ?> </button> |
