-
Anonymous
Стиль полосы прокрутки не работает после нового обновления Chrome?
Сообщение
Anonymous »
У меня есть следующий код, который перестал работать после нового обновления Chrome. Как добиться кросс-браузерного стиля полосы прокрутки?
Код: Выделить всё
// Note: Shared Scrollbar Style
const scrollbarSharedStyle = {
scrollbarColor: `${themeLayers.scrollBar[0]} ${themeLayers.scrollBar[1]}`,
'&::-webkit-scrollbar, & *::-webkit-scrollbar': {
backgroundColor: `${themeLayers.scrollBar[1]}`,
width: 12,
},
'&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb': {
borderRadius: 6,
backgroundColor: `${themeLayers.scrollBar[0]}`,
minHeight: 24,
border: `2.5px solid ${themeLayers.scrollBar[1]}`,
},
'&::-webkit-scrollbar-thumb:focus, & *::-webkit-scrollbar-thumb:focus': {
backgroundColor: `${themeLayers.scrollBar[0]}`,
},
'&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active': {
backgroundColor: `${themeLayers.scrollBar[0]}`,
},
'&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover': {
backgroundColor: `${themeLayers.scrollBar[0]}`,
},
'&::-webkit-scrollbar-corner, & *::-webkit-scrollbar-corner': {
backgroundColor: `${themeLayers.scrollBar[1]}`,
},
};
Подробнее здесь:
https://stackoverflow.com/questions/778 ... ome-update
1717004356
Anonymous
У меня есть следующий код, который перестал работать после нового обновления Chrome. Как добиться кросс-браузерного стиля полосы прокрутки?
[code]// Note: Shared Scrollbar Style
const scrollbarSharedStyle = {
scrollbarColor: `${themeLayers.scrollBar[0]} ${themeLayers.scrollBar[1]}`,
'&::-webkit-scrollbar, & *::-webkit-scrollbar': {
backgroundColor: `${themeLayers.scrollBar[1]}`,
width: 12,
},
'&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb': {
borderRadius: 6,
backgroundColor: `${themeLayers.scrollBar[0]}`,
minHeight: 24,
border: `2.5px solid ${themeLayers.scrollBar[1]}`,
},
'&::-webkit-scrollbar-thumb:focus, & *::-webkit-scrollbar-thumb:focus': {
backgroundColor: `${themeLayers.scrollBar[0]}`,
},
'&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active': {
backgroundColor: `${themeLayers.scrollBar[0]}`,
},
'&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover': {
backgroundColor: `${themeLayers.scrollBar[0]}`,
},
'&::-webkit-scrollbar-corner, & *::-webkit-scrollbar-corner': {
backgroundColor: `${themeLayers.scrollBar[1]}`,
},
};[/code]
Подробнее здесь: [url]https://stackoverflow.com/questions/77893503/scrollbar-style-is-not-working-after-the-new-chrome-update[/url]