Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change scrollbar css #3925

Merged
merged 6 commits into from
Oct 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions apollo-portal/src/main/resources/static/styles/common-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -553,18 +553,19 @@ table th {

/*搜索框*/
::-webkit-scrollbar {
lepdou marked this conversation as resolved.
Show resolved Hide resolved
width: 0;
height: 0;
background: rgba(255, 255, 255, 0);
/*滚动条整体样式*/
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}

::-webkit-scrollbar-thumb:vertical {
background: rgba(255, 255, 255, 0);
border-radius: 10px;
::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
background-color: rgba(178, 178, 178, 0.8);
}

::-webkit-scrollbar-thumb:vertical:hover {
background: rgba(255, 255, 255, 0);
::-webkit-scrollbar-thumb:hover {
background-color: rgba(178, 178, 178, 1);
}

.app-list {
Expand Down Expand Up @@ -1113,4 +1114,4 @@ table th {

.back-top:active {
opacity: .6;
}
}