You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.
I prefer there to be no close button on the vertical tabs (middle click is preferred), but the naive way of hiding .tab-close leaves a ugly shadow. After some digging, I added was able to find the CSS code:
/* Close button */
.tab-close {
display: none !important;
}
/* Close button gradient */
.tab:hover:not(.pinned) > .tab-title-wrapper {
mask-image: linear-gradient(to left, transparent 0, black 2em) !important;
}
I think it would be best if there was some indication that the mask-image is for the close button or there should be a wiki entry explaining it. Especially since the method of applying the gradient seems to change with releases.
I noticed #291 mentioned doing something similar, but the CSS was never added to the wiki.
The text was updated successfully, but these errors were encountered:
I prefer there to be no close button on the vertical tabs (middle click is preferred), but the naive way of hiding .tab-close leaves a ugly shadow. After some digging, I added was able to find the CSS code:
I think it would be best if there was some indication that the mask-image is for the close button or there should be a wiki entry explaining it. Especially since the method of applying the gradient seems to change with releases.
I noticed #291 mentioned doing something similar, but the CSS was never added to the wiki.
The text was updated successfully, but these errors were encountered: