我使用 dconf 应用程序对我的 dock(dash to dock)进行了一些自定义,我非常喜欢它,但是当我激活我的 shell 主题(dracula)时,它有点破坏了整洁的外观,我无法在 dconf 中修复它。我添加了两张图片,其中 shell 主题已激活和已停用。我使用 Ubuntu LTS 22.04。我可以以某种方式排除 dash to dock 使用 shell 主题吗?
编辑:这是来自 dock 的 scss:
/* DASHBOARD */
#dash {
font-size: 9pt;
color: $topbar_color;
background-color: $topbar_bg_color;
padding: 6px 0;
border: 1px solid $borders_color;
border-left: 0px;
border-radius: 0px 5px 5px 0px;
&:rtl {
border-radius: 9px 0 0 9px;
}
.placeholder {
background-image: url("assets/dash-placeholder.svg");
background-size: contain;
height: 24px;
}
.empty-dash-drop-target {
width: 24px;
height: 24px;
}
}
.dash-item-container > StWidget {
padding: 4px 8px;
}
.dash-label { //osd tooltip
border-radius: 7px;
padding: 4px 12px;
color: $topbar_color;
background-color: $topbar_bg_color;
text-align: center;
-x-offset: 8px;
}
编辑2:我发现了更多scss:
/* DASHBOARD */
#dash {
font-size: 9pt;
color: #f8f8f2;
background-color: rgba(40, 42, 54, 0.95);
padding: 6px 0;
border: 1px solid #1b1c24;
border-left: 0px;
border-radius: 0px 5px 5px 0px; }
#dash:rtl {
border-radius: 9px 0 0 9px; }
#dash .placeholder {
background-image: url("assets/dash-placeholder.svg");
background-size: contain;
height: 24px; }
#dash .empty-dash-drop-target {
width: 24px;
height: 24px; }
.dash-item-container > StWidget {
padding: 4px 8px; }
.dash-label {
border-radius: 7px;
padding: 4px 12px;
color: #f8f8f2;
background-color: rgba(40, 42, 54, 0.95);
text-align: center;
-x-offset: 8px; }