Quote from
luishp on September 29, 2021, 6:03 pm
@gustavo1973 puedes utilizar CSS para modificar el estilo de las barras de scroll en Chrome, Safari y Edge (pero no en Firefox).
Copia y pega este código en Project > Properties > Styles
::-webkit-scrollbar {
width: 3em;
height: 2em
}
::-webkit-scrollbar-button {
background: #ccc
}
::-webkit-scrollbar-track-piece {
background: #888
}
::-webkit-scrollbar-thumb {
background: #eee
}
Saludos
@gustavo1973 puedes utilizar CSS para modificar el estilo de las barras de scroll en Chrome, Safari y Edge (pero no en Firefox).
Copia y pega este código en Project > Properties > Styles
::-webkit-scrollbar {
width: 3em;
height: 2em
}
::-webkit-scrollbar-button {
background: #ccc
}
::-webkit-scrollbar-track-piece {
background: #888
}
::-webkit-scrollbar-thumb {
background: #eee
}
Saludos