diff --git a/resources/assets/javascripts/bootstrap/studip_helper_attributes.js b/resources/assets/javascripts/bootstrap/studip_helper_attributes.js
index 60a9e1c40e02a73e8a7206b2fae0b14b819c2ada..a733638a91d9e3af66b386156da3e81f9d7699b0 100644
--- a/resources/assets/javascripts/bootstrap/studip_helper_attributes.js
+++ b/resources/assets/javascripts/bootstrap/studip_helper_attributes.js
@@ -236,3 +236,10 @@ $(document).on('keydown', '.enter-accessible', function(event) {
         $(this).trigger('click');
     }
 });
+
+$(document).on('click', '[data-toggles]', function (event) {
+    const target = event.currentTarget.dataset.toggles;
+    $(target).toggle();
+
+    event.preventDefault();
+});
diff --git a/resources/assets/stylesheets/less/helpbar.less b/resources/assets/stylesheets/less/helpbar.less
index 63cc79cb2a99d5f3bcf979a96e16835c92ed3cc1..09262f365bb412d6825e22469b4af043f84d0069 100644
--- a/resources/assets/stylesheets/less/helpbar.less
+++ b/resources/assets/stylesheets/less/helpbar.less
@@ -1,5 +1,13 @@
 @helpbar-width: 250px;
 
+.helpbar-toggler {
+    width: 24px;
+    height: 24px;
+    overflow: hidden;
+
+    display: inline-block;
+}
+
 .helpbar-container {
     clear: both;
     height: 28px;
@@ -11,10 +19,6 @@
 
     float: right;
 
-    #helpbar-sticky {
-        display: none;
-    }
-
     h2, h3 {
         border-bottom: 0;
         color: #fff;
@@ -32,8 +36,15 @@
         margin-bottom: 2px;
         padding-bottom: 2px;
     }
+
+    > .helpbar-toggler {
+        float: right;
+    }
 }
+
 .helpbar {
+    background-color: @base-color;
+    padding: 8px;
     box-sizing: border-box;
 
     @border-width: 4px;
@@ -45,7 +56,7 @@
     width: @helpbar-width;
     z-index: 1000;
 
-    &:before {
+    &::before {
         border-bottom: 2px solid @base-color-80;
         border-left: @border-width solid transparent;
         border-right: @border-width solid transparent;
@@ -58,25 +69,18 @@
     }
 
     .helpbar-title {
-        .background-icon('question-circle', 'clickable', 24);
-        background-position: right top;
-        background-repeat: no-repeat;
-        margin: 2px 4px -4px;
-        overflow: hidden;
-        padding: 0px 0 2px 0px;
-
-        label {
-            cursor: pointer;
-            display: block;
-            padding: 3px 4px;
-            font-weight: 700;
-            margin: 0em 0 0.3em;
-        }
+        display: flex;
+        justify-content: space-between;
+    }
+
+    .helpbar-toggler {
+        margin-top: -7px;
+        margin-right: -6px;
     }
+
     .helpbar-widgets {
         color: #fff;
         list-style: none;
-        margin: 0px 8px;
         padding: 0;
 
         a {
@@ -122,33 +126,6 @@
     }
 }
 
-.helpbar {
-    @transition: all 300;
-
-    width: 32px;
-    text-indent: -@helpbar-width;
-    transition: @transition;
-
-    .helpbar-widgets {
-        max-height: 0;
-        transition: @transition;
-        overflow: hidden;
-    }
-
-    #helpbar-sticky:checked + & {
-        text-indent: 0;
-        background-color: #28497c;
-        width: @helpbar-width;
-        .helpbar-title {
-            .background-icon('decline-circle', 'info_alt', 24);
-        }
-        .helpbar-widgets {
-            max-height: 1000px;
-        }
-    }
-}
-
-
 section.big-help-box {
     background-color: #d4dbe5;
     border: 1px solid #7e92b0;
diff --git a/templates/helpbar/helpbar.php b/templates/helpbar/helpbar.php
index ac2089d14dd40f26fd4573ee3f617fa68ffc8e06..5810049e5f36d94c1c466b3d8461274db1c7661d 100644
--- a/templates/helpbar/helpbar.php
+++ b/templates/helpbar/helpbar.php
@@ -1,10 +1,14 @@
 <div class="helpbar-container">
-    <input type="checkbox" id="helpbar-sticky" <? if ($open) echo 'checked'; ?>>
-    <div class="helpbar">
+    <a href="#" class="helpbar-toggler" data-toggles=".helpbar" title="<?= _('Hilfelasche anzeigen/verstecken') ?>">
+        <?= Icon::create('question-circle')->asImg(24) ?>
+    </a>
+    <div class="helpbar" <? if (!$open) echo 'style="display: none"'; ?>>
+
         <h2 class="helpbar-title">
-            <label for="helpbar-sticky">
-                <?= _('Tipps & Hilfe') ?>
-            </label>
+            <?= _('Tipps & Hilfe') ?>
+            <a href="#" class="helpbar-toggler" data-toggles=".helpbar" aria-hidden="true" title="<?= _('Hilfelasche verstecken') ?>">
+                <?= Icon::create('decline-circle', Icon::ROLE_INFO_ALT)->asImg(24) ?>
+            </a>
         </h2>
         <ul class="helpbar-widgets">
         <? foreach ($widgets as $index => $widget): ?>