我正在尝试通过在我的 C++ 应用程序中调用外部 CSS 文件来创建一个圆形按钮。
我设法得到一个圆形按钮,但仍然有一些矩形边框,我找不到如何摆脱那个边框。
CSS文件的内容:
GtkButton {
-GtkWidget-focus-line-width: 1px;
border-width: 1px;
border-radius: 30px;
background-image: -gtk-gradient (linear,
left top,
left bottom,
from (@win_bg),
color-stop (0.5, @win_dark),
to (@win_bg));
}
PS:我省略了颜色定义以使其更短。