eoger / tabcenter-redux

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

hiding vertical white line on the right #244

Closed hethhhhh closed 6 years ago

hethhhhh commented 6 years ago

When using the CSS in the examples

#tablist {
  margin-right: -16px; /* Value from KDE's Breeze theme; adjust as needed */
  transition: margin-right 0s 1s;
}

#tablist:hover {
  margin-right: 0px;
  transition: margin-right 0s 4s;
} 

I have an ugly white line which doesn't shrink

screenshot: https://i.imgur.com/w7v8oNP.png

eoger commented 6 years ago

@dos1 might be able to help, which OS are you using?

dos1 commented 6 years ago

Just adjust the margin, as the comment says. This line looks like 1 pixel wide, so -17px should do.

hethhhhh commented 6 years ago

@eoger I don't believe it's OS related, but how should I know. it's win8.1x64 with dark (dev) theme

@dos1 I tried that of course, it's not working. appears to be some other element, but for the life of me couldn't figure out how to shrink it.

Keith94 commented 6 years ago

Can you try adding the following to your userChrome.css file. This should darken the sidebar's border when using Firefox's dark theme.

#main-window[lwthemetextcolor="bright"] .sidebar-splitter {
  border-right-color: #0C0C0D !important;
}
hethhhhh commented 6 years ago

@Keith94 that worked, thanks; is it possible this to be in the extension in some way? or there is no API for changing that

Keith94 commented 6 years ago

there is no API for changing that

Likely this. Extensions can't modify interface things afaik.