mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-24 14:31:55 +01:00
* fix: add empty state to locations list * fix: add empty states for homepage lists * fix: add empty state to notifiers list * fix: update profile notifiers to use translation, add en and pt-pt copy * chore: tweak copy for notifier empty state * fix: add new empty state for search page * fix: update new empty states to use translation strings * chore: eslint fixes, translation * fix: translation key --------- Co-authored-by: Matt Kilgore <matthew@kilgore.dev>
31 lines
501 B
CSS
31 lines
501 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;
|
|
}
|