Я пытаюсь установить таблицу стилей в QTextBrowser, чтобы изменить вид полос прокрутки. Я не понимаю, почему фон имеет шаблон проверки и почему не применяется радиус.
![enter image description here](https://i.stack.imgur.com/KGFua.png)
Вот моя таблица стилей:
QFrame
{
background-color: rgb(240, 230, 200);
color: rgb(26, 26, 26);
border: 2px;
}
QScrollBar
{
background-color: yellow;
width: 8px;
border: 2px;
border-radius: 4px;
}
QScrollBar::handle
{
background-color: rgb(100, 100, 100);
border: 2px;
border-radius: 4px;
}