2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 03:19:01 +00:00

fix(ux): scroll long db names

This commit is contained in:
18alantom 2021-12-16 17:37:28 +05:30 committed by Alan
parent b7cd516138
commit f502b8004b
3 changed files with 5 additions and 5 deletions

View File

@ -74,7 +74,7 @@
</div> </div>
<div class="px-5 window-no-drag"> <div class="px-5 window-no-drag">
<button <button
class="pb-1 text-sm text-gray-600 hover:text-gray-800 truncate" class="pb-1 text-sm text-gray-600 hover:text-gray-800 w-full whitespace-nowrap overflow-scroll no-scrollbar text-left"
@click="$emit('change-db-file')" @click="$emit('change-db-file')"
> >
{{ dbPath }} {{ dbPath }}

View File

@ -332,8 +332,4 @@ export default {
.report-scroll-container::-webkit-scrollbar-track { .report-scroll-container::-webkit-scrollbar-track {
background-color: white; background-color: white;
} }
.no-scrollbar::-webkit-scrollbar {
display: none;
}
</style> </style>

View File

@ -48,3 +48,7 @@ html {
.frappe-chart .chart-legend { .frappe-chart .chart-legend {
display: none; display: none;
} }
.no-scrollbar::-webkit-scrollbar {
display: none;
}