diff --git a/public/assets/css/core-extend.css b/public/assets/css/core-extend.css index f72291fd..f0a37751 100644 --- a/public/assets/css/core-extend.css +++ b/public/assets/css/core-extend.css @@ -1252,6 +1252,59 @@ ::-webkit-scrollbar { 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 { + 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; +} ::-webkit-scrollbar-track { background: #f0f0f0; @@ -1274,4 +1327,3 @@ scrollbar-width: thin; scrollbar-color: #b3b3b3 #f0f0f0; } -} \ No newline at end of file