我正在运行 Ubuntu 20.04 mate 桌面。我正在定制伴侣面板。我想使用以下数字字体,并将以下样式添加到~/.config/gtk-3.0/gtk.css
#clock-applet-button.flat.toggle > box.horizontal > label {
font-weight: normal;
color: white;
font-family: DS-Digital;
font-weight: bold;
font-size: 18px;
/*padding-right: 10px;
padding-left: 10px; */
/*letter-spacing: 3px;*/
/*margin: 8px;
margin-left: 14px;
margin-right: 14px;*/
padding: 0 15px 0 15px;
font-stretch: ultra-condensed;
outline-offset: 100px;
background-color: red;
/*border-left-width: 50px;
border-right-width: 50px;*/
/*outline-width: 20px;*/
}
当数字浓缩时它会摆动,例如当时钟数字从00
到计数时,它的宽度会发生变化01
我尝试添加边距、填充,但它们不起作用。有没有技巧来修复它gtk css
?
您正在寻找的物业是
这将阻止盒子低于设定的宽度值。
在这里你可以看到文档,盒子属性可以在表 7 中找到。
为了解决您仍在调整数字大小的问题,这与您选择的字体有关。在您提供的链接中,您可以看到数字 1 仅是其他数字宽度的一半。
要编辑字体的 .ttf 文件,您可以使用 repos 中的 fontforge 之类的东西,这应该是一项简单的任务。