fix: Update scroll bar styling for components (#8819)

* fix: display list and container scrollbar only on hover

* Correction in Postgrest version

---------

Co-authored-by: Adish M <adish.madhu@gmail.com>
This commit is contained in:
Johnson Cherian 2024-04-19 13:18:49 +05:30 committed by GitHub
parent d686cece78
commit a36f4ced00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12737,6 +12737,59 @@ tbody {
}
}
.canvas-container {
scrollbar-color: transparent;
scrollbar-width: thin;
&::-webkit-scrollbar {
background-color: transparent;
width: 6px;
scrollbar-width: thin;
}
&::-webkit-scrollbar-track {
background-color: transparent;
scrollbar-width: thin;
}
&::-webkit-scrollbar-thumb {
background-color: transparent;
}
&:hover{
scrollbar-color: #6a727c4d;
&::-webkit-scrollbar-thumb {
background-color: #6a727c4d !important;
}
}
}
.jet-listview {
&:hover{
scrollbar-color: #6a727c4d;
&::-webkit-scrollbar-thumb {
background-color: #6a727c4d !important;
}
}
}
.dark-theme {
.canvas-container {
&:hover {
scrollbar-color: #6a727c4d;
&::-webkit-scrollbar-thumb {
background-color: #6a727c4d !important;
}
}
}
.jet-listview {
&:hover {
scrollbar-color: #6a727c4d;
&::-webkit-scrollbar-thumb {
background-color: #6a727c4d !important;
}
}
}
}
.number-input-arrow {
&:hover {
background-color: var(--interactive-overlays-fill-hover) !important;
@ -12745,4 +12798,4 @@ tbody {
&:active {
background-color: var(--interactive-overlays-fill-pressed) !important;
}
}
}