📝 "Fix typo in FEHLER_BEHOBEN.md and related files (#42)" 🐛

This commit is contained in:
2025-05-30 20:09:21 +02:00
parent bb54643d18
commit f45fcc5d0e
5 changed files with 522 additions and 111 deletions

View File

@@ -99,6 +99,73 @@
.disable-transitions * {
transition: none !important;
}
/* ===== ULTRA-DEZENTE SCROLLBALKEN ===== */
/* Webkit-Browser (Chrome, Safari, Edge) */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 3px;
transition: all 0.3s ease;
}
/* Nur bei Hover über scrollbaren Container sichtbar */
*:hover::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.05);
}
*:hover::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.1);
}
/* Dark Mode - noch dezenter */
.dark *:hover::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.03);
}
.dark *:hover::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.08);
}
/* Firefox - ultra-thin */
* {
scrollbar-width: none; /* Komplett versteckt in Firefox */
}
/* Nur bei Hover sichtbar in Firefox */
*:hover {
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, 0.05) transparent;
}
.dark *:hover {
scrollbar-color: rgba(255, 255, 255, 0.03) transparent;
}
/* Spezielle Container die scrollbar brauchen */
.modal-content::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar {
width: 4px;
}
.modal-content::-webkit-scrollbar-thumb,
.dropdown-menu::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.1);
}
.dark .modal-content::-webkit-scrollbar-thumb,
.dark .dropdown-menu::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
}
</style>
{% block head %}{% endblock %}

View File

@@ -368,8 +368,8 @@
/* Webkit-Browser (Chrome, Safari, Edge) */
::-webkit-scrollbar {
width: 4px;
height: 4px;
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {