ubuntu16.04 terminal当前tab页面高亮显示

https://gist.github.com/yantonov/efab3b877c5812593c38

Highlight current tab for ubuntu terminal (~/.config/gtk-3.0/gtk.css)
 
TerminalWindow .notebook {
  padding: 0;
  border-width: 0;
}

TerminalWindow,
TerminalWindow.background {
  background-image: none;
  background-color: #6e6e6e;
  color: #000000;
}

TerminalWindow .notebook tab {
  padding: 0;
  border-image: none;
  border-width: 0;
  background-color: #6e6e6e;
}

TerminalWindow .notebook tab:active {
   padding: 0;
   border-image: none;
   border-width: 0;
   background-color: #d1d1d1;
}

猜你喜欢

转载自www.cnblogs.com/xixiangyuanye/p/9057035.html