-
Hello folks, I've hit a couple of road blocks when messing around with the custom style rules of TST.
The Code I have: (if it helps, I based this on FlyingFox, where I removed the changes I did not want)
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
For the border of the dragged tab, it is simply a less transparent copy of the original tab so it isn't a separate property. However, you could change the border of the tab only when you are dragging it by using the css below. Both the tab and the moving tab will get the updated border only when dragging. Customize to your liking.
As for the pinned tabs spacing, you should read this comment: #2105 (comment) For the last item on the indentation, I assume that problem isn't there if you remove the CSS you added to TST? (Is it safe to assume your CSS changes that behavior?) It doesn't look what you pasted is complete either. (The beginning isn't right) In addition, I don't see any references to "tab-item-substance" which was a DOM change that was introduced in 3.8.5 and I am guessing is probably part of the issue. (#2960 (comment)) Oh, I think I found where you started from (Yes? https://github.com/akshat46/FlyingFox/blob/master/treestyletab/custom.css) I see that this was last updated Mar 21, 2021 which was BEFORE the DOM changes were done in 3.8.5 and released on July 6, 2021. Finally, I do see this CSS is supposed to work with very specific set of configurations laid out here https://github.com/akshat46/FlyingFox/tree/master/treestyletab. They even say that you need to start with the "plain" theme which is no longer part of TST initially. (There are ways to insert that old CSS manually as well) Maybe all of this is to say there might be a fair amount of work to get this to work as it was originally intended. If you wanted to pull just specific sections of the CSS to work maybe we could get it to work. |
Beta Was this translation helpful? Give feedback.
For the border of the dragged tab, it is simply a less transparent copy of the original tab so it isn't a separate property. However, you could change the border of the tab only when you are dragging it by using the css below. Both the tab and the moving tab will get the updated border only when dragging. Customize to your liking.
As for the pinned tabs spacing, you should read this comment: #2105 (comment)
For the last item on the indentation, I assume that problem isn't there if you remove the CSS you added to TST? (Is it safe to assume your CSS changes that behavior?) It doesn't look wh…