我的 gdm3 的替代方案安装在/usr/share/gnome-shell/theme/mytheme/mytheme.css
。它的assets
目录存储了所有的 .svg 文件,位于/usr/share/gnome-shell/theme/mytheme/assets
。 中的典型选择器mytheme.css
访问“assets”目录中的 .svg 文件,如下所示:
.toggle-switch-us {
background-image: url("assets/toggle-off.svg"); }
.toggle-switch-us:checked {
background-image: url("assets/toggle-on.svg"); }
但是,这些 svg 图像(以及所有其他 .svg 图像)似乎没有出现在 gnome 欢迎程序和解锁屏幕中。
url
声明我想要的内容的正确语法是什么?