Merge branch 'Weidget_Dashboard_Services' of https://git.marcoaiot.com/admin/marco.pms.web into Weidget_Dashboard_Services

This commit is contained in:
Kartik Sharma 2025-12-10 09:32:32 +05:30
commit e70e73512f

View File

@ -1252,6 +1252,37 @@
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 8px; width: 8px;
} }
/* ====================== Thin Scrollbar (Global) ====================== */
.job-scroll-wrapper {
max-height: 350px;
overflow-y: auto;
padding-right: 8px;
/* Firefox thin scrollbar */
scrollbar-width: thin;
scrollbar-color: #c8c8c8 transparent;
}
/* Chrome, Edge, Safari */
.job-scroll-wrapper::-webkit-scrollbar {
width: 4px;
}
.job-scroll-wrapper::-webkit-scrollbar-track {
background: transparent;
}
.job-scroll-wrapper::-webkit-scrollbar-thumb {
background-color: #c8c8c8;
border-radius: 20px;
}
.job-scroll-wrapper::-webkit-scrollbar-thumb:hover {
background-color: #a0a0a0;
}
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background: #f0f0f0; background: #f0f0f0;
@ -1274,4 +1305,25 @@
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: #b3b3b3 #f0f0f0; scrollbar-color: #b3b3b3 #f0f0f0;
} }
::-webkit-scrollbar-track {
background: #f0f0f0;
/* light grey track */
}
::-webkit-scrollbar-thumb {
background: #b3b3b3;
/* grey handle */
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #8e8e8e;
/* darker grey on hover */
}
/* For Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #b3b3b3 #f0f0f0;
} }