eoger / tabcenter-redux

Vertical Tabs extension for Firefox
Mozilla Public License 2.0
381 stars 67 forks source link

How to hide the blue vertical line in active tab? #403

Closed linhvng closed 5 years ago

linhvng commented 5 years ago

image

I want to hide or change the blue vertical line to transparent. How do I do that?

linhvng commented 5 years ago

found a solution, add this snippet to custom style sheet:

.tab:not(.hasContext) {
    --identity-tab-color: transparent;
}

how it looks:

image

*edit: to remove the 1px line on the left of active bar:

.tab-icon{
  margin-left: 3px;
}
.tab-context {
  min-width: 0px;
}

how it looks:

image