Como estilizar o container do terminal com “add new tab” e lista de itens de abas?

0

Estou falando desse contêiner:

Qual é o id / class / tag CSS para isso? Eu tentei encontrá-lo na fonte gnome-terminal, mas eu não estou familiarizado com o C ++.

    
por Defman 23.04.2016 / 19:32

1 resposta

0

É TerminalWindow .notebook .button . Isso funciona para mim:

@define-color bg-grey #222;
@define-color active-grey #333;
@define-color border-grey #555;

TerminalWindow .notebook {
  border: 0;
  padding: 0;
  color: #eee;
  background-color: shade(@active-grey, 1);
}

TerminalWindow .notebook tab:active {
  border: 1px solid @border-grey;
  background-color: shade(@active-grey, 1);
}

TerminalWindow .notebook tab {
  background-color: shade(@bg-grey, 1);
}

TerminalWindow .notebook .button,
TerminalWindow .notebook .button:active {
    padding: 2 2 2 10;
    background-image: none;
    border: 0;
}
    
por Lari Hotari 09.05.2016 / 15:19