Files
homebox/frontend/assets/css/main.css
zebrapurring fff0f4344c Fix overflow caused by long URL tooltips (#73)
* Fix overflow caused by long URL tooltips

* Break URL tooltips to prevent horizontal page overflows

---------

Co-authored-by: zebrapurring <>
Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com>
2024-06-28 14:27:02 -04:00

30 lines
500 B
CSS

.text-no-transform {
text-transform: none !important;
}
.btn {
text-transform: none !important;
}
.tooltip {
overflow-wrap: break-word;
}
/* transparent subtle scrollbar */
::-webkit-scrollbar {
width: 0.2em;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0,0,0,.2);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb:hover {
background-color: #9B9B9B;
}