mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-08 15:09:27 +08:00
* Revert "style(TableColumn): fix style of mouse hover (#3597)" This reverts commit 488616f7fe05c1fc4ac25d0e65f30e9dc0a3b2ee. * fix: fix hover style for sub table * fix: style * Revert "fix: style" This reverts commit 33901c4ff96458b17f0f68839f726f520370e622. * fix: style
36 lines
726 B
Plaintext
36 lines
726 B
Plaintext
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: var(--colorBgScrollTrack);
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--colorBgScrollBar);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--colorBgScrollBarHover);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background: var(--colorBgScrollBarActive);
|
|
}
|
|
|
|
.rc-virtual-list-scrollbar-thumb {
|
|
background: var(--colorBgScrollBar) !important;
|
|
}
|
|
.rc-virtual-list-scrollbar-thumb:hover {
|
|
background: var(--colorBgScrollBarHover) !important;
|
|
}
|
|
.rc-virtual-list-scrollbar-thumb:active {
|
|
background: var(--colorBgScrollBarActive) !important;
|
|
}
|