--
This commit is contained in:
parent
bf80655118
commit
1c150c540d
@ -7,20 +7,28 @@ body {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
/*скрывает все скролл-бары*/
|
||||
html * {
|
||||
-ms-overflow-style: none;
|
||||
overflow: -moz-scrollbars-none;
|
||||
scrollbar-width: none;
|
||||
html * ::-webkit-scrollbar {
|
||||
background-color: inherit;
|
||||
}
|
||||
html ::-webkit-scrollbar {
|
||||
html * ::-webkit-scrollbar-button {
|
||||
display: none;
|
||||
width : 0 !important;
|
||||
}
|
||||
html * ::-webkit-scrollbar-track {
|
||||
background-color: inherit;
|
||||
}
|
||||
html * ::-webkit-scrollbar-thumb {
|
||||
width: 5px;
|
||||
background-color: gray;
|
||||
}
|
||||
|
||||
html {
|
||||
-ms-overflow-style : none; /* IE 10+ */
|
||||
scrollbar-width : none; /* Firefox */
|
||||
}
|
||||
|
||||
/*
|
||||
::-webkit-scrollbar — это фон самого скроллбара.
|
||||
::-webkit-scrollbar-button — кнопки направления на полосе прокрутки.
|
||||
::-webkit-scrollbar-track — пустое пространство под индикатором прокрутки.
|
||||
::-webkit-scrollbar-thumb — индикатор прокрутки, перетаскиваемый элемент.
|
||||
*/
|
||||
|
||||
|
||||
video {
|
||||
pointer-events: none;
|
||||
|
Loading…
Reference in New Issue
Block a user