This CSS snippet adds a vertical scrollbar to the Elementor Text Editor widget when the content exceeds a specified height. It helps save space on pages with long text while maintaining a clean user experience. The scrollbar track and thumb can be customized to match your website design.
selector{
max-height: 300px;
overflow-x: hidden;
overflow-y: auto;
}
selector::-webkit-scrollbar{
width: 14px;
}
selector::-webkit-scrollbar-track{
background: rgba(0, 0, 0, 0.1);
}
selector::-webkit-scrollbar-thumb{
background: rgba(0, 0, 0, 0.31);
}