31 lines
No EOL
817 B
CSS
31 lines
No EOL
817 B
CSS
.noselect {
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Safari */
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
-moz-user-select: none; /* Old versions of Firefox */
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
user-select: none; /* Non-prefixed version, currently
|
|
supported by Chrome, Edge, Opera and Firefox */
|
|
}
|
|
#s::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
#s::-webkit-scrollbar-track {
|
|
background-color: white;
|
|
}
|
|
#s::-webkit-scrollbar-thumb {
|
|
background-color: #606060;
|
|
border-radius: 20px;
|
|
}
|
|
#s::-webkit-scrollbar-thumb:hover {
|
|
background-color: #909090;
|
|
}
|
|
#sc::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
#sc::-webkit-scrollbar-track {
|
|
background-color: white;
|
|
}
|
|
#sc::-webkit-scrollbar-thumb {
|
|
background-color: #666B7A;
|
|
} |