lanoxx / tilda

A Gtk based drop down terminal for Linux and Unix
GNU General Public License v2.0
1.26k stars 162 forks source link

How to hide the blue bar in active tab #447

Closed omaressameldin closed 3 years ago

omaressameldin commented 3 years ago

I am trying to hide the blue border for active tab as you can see here image but I am unable to do so. This is my style.css

/* 1 */
notebook > header {
    background-color: rgba(30,31,41,1);
    border: none;
    margin: 0;
    padding:0;
  }

  /* 2 */
  notebook > header > tabs {
    background: rgba(30,31,41,1);
    background-color: rgba(30,31,41,1);
    border: none;
    box-shadow:  0px 5px 10px rgba(0,0,0,0.2);
  }

  /* 3 */
  notebook > header > tabs > tab {
    background: rgba(30,31,41,1);
    color: #4c5e63;
    border: none;
    padding: 6px;
    min-width: 100px;
    border-radius: 0px;
  }

  /* 4 */
  notebook > header > tabs > tab:checked {
    color: #FCBFB7;
    border-bottom: 5px solid rgba(51, 153, 137,0.8);
    border-image: none;
  }
lanoxx commented 3 years ago

Try the box-shadow: none; on tab:checked:

tab:checked {
  box-shadow: none;
}

On the Tilda wiki we have a section about custom styles. If you come up with something nice, consider mentioning it there.