在 Lubuntu 上,Terminator 打开两个或更多标签时,窗口会带有白色边框

在 Lubuntu 上,Terminator 打开两个或更多标签时,窗口会带有白色边框

我使用的是 Lubuntu 17.10,并且安装了 Terminator。打开两个选项卡时,我注意到,即使在全屏模式下,窗口周围也有难看的白色边框。

在此处输入图片描述

由于背景为白色,因此此处的图像可能难以查看,但这是全屏终结者的图像,其中打开了两个选项卡。我该如何摆脱它?这是 LXDE 的错吗?

答案1

我打开了gtk 检查器从终端,我无法从终结器本身打开它。使用 gtk-inspector,我发现添加了以下 css 规则以~/.config/gtk-3.0/gtk.css删除难看的白色边框。

.terminator-terminal-window notebook header, .terminator-terminal-window stack {
    border: none;
}

答案2

这对我来说很管用。在你的~/.config/gtk-3.0/gtk.css

.terminator-terminal-window notebook {
    border: none;
}

答案3

这很可能是 gtk 主题的问题。我的 arc-gtk-theme 有这个边框,但其他一些主题没有

答案4

Ubuntu 20.04

我也使用 gtk-inspector 来找到它。注意:我使用 gnome-terminal 启动了 terminator,使用方法如下:GTK_DEBUG=interactive terminator。它不适用于其他终端。(您还需要先使用 gtk-inspector 激活它

这是我的 gtk.css 配置,用于修复此问题:

    .terminator-terminal-window notebook tab {
         margin-left: 0px;
         margin-right: 0px;
    }


    .terminator-terminal-window notebook tabs {
        padding-left: 0px;
    }

我添加了一些我喜欢的花哨东西。这就是我的完整 gtk.css

.terminator-terminal-window notebook tab {
    font-size: 13px;
    padding: 0;
    min-height:0;
    border: 0px;
    background-color: #111;
    color: white;
    margin-left: 0px;
    margin-right: 0px;

}
.terminator-terminal-window notebook tabs {
    padding-left: 0px;
}

.terminator-terminal-window notebook tab:checked {
    border: 0px;
    font-weight: bold;
    color: #ffde33;
    background-color: #330;
    box-shadow: none;
    border-width: 1px;
    border-style: outset;
    border-color: #550;
}
.terminator-terminal-window notebook tab button{
    padding-left: 5px;
    padding-right: 5px;
}

.terminator-terminal-window notebook tab button:hover{
    background-color: #550;
}

相关内容