Replies: 28 comments 42 replies
-
I couldn't set it up quickly, I rolled back to the previous version. There is no time to spend half a day on configuration through debugging. |
Beta Was this translation helpful? Give feedback.
-
I'd also like to know how to remove the new grey border and the 2px gaps between tabs. They are very distracting. Screenshots for comparison: |
Beta Was this translation helpful? Give feedback.
-
I agree. I also want to remove them upd: I'm not a css expert, but very distracting - so temp solution until a normal solution appears
|
Beta Was this translation helpful? Give feedback.
-
If you paste your user CSS here, someone (include me) may advice where should be updated. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I think it is this that caused the problem:
After removing this part of the code, the gaps disappeared, but the tab dividers are still grey. How to change them to black? |
Beta Was this translation helpful? Give feedback.
-
Oops, apologies for that, I did have user styles but totally forgot about them (as they're quite deep in the TST settings). These were copied from TST snippets a very long time ago, and seem to have always kept working:
Are you now supposed to change |
Beta Was this translation helpful? Give feedback.
-
Okay, for me the following worked to get the narrower tab spacing:
This made the end result look identical to my 3.8.4 screenshot. It seems the "Show title of unread tabs with italic font" item still works as-is. |
Beta Was this translation helpful? Give feedback.
-
Seemed like the "less visible tab dividers" code snippet was seemingly the main cause of the issue for me too. I fixed it by removing
|
Beta Was this translation helpful? Give feedback.
-
@DimitryAndric Yes it is the answer! DOM structure on TST 3.8.4 and olders is: <tab-item id="tab-17"
data-level="0"
class="tab discarded private-browsing unread"
...>
<span class="background"></span>
<tab-twisty class="twisty" role="button"></tab-twisty>
<tab-favicon class="favicon" src="...">...</tab-favicon>
<tab-label role="button" class="label" value="New Tab">...</tab-label>
<tab-counter class="counter">0</tab-counter>
<tab-sound-button class="sound-button" role="button"></tab-sound-button>
<tab-closebox class="closebox" role="button" draggable="true"></tab-closebox>
...
</tab-item>
On the other hand, DOM structure on TST 3.8.5 and later is: <tab-item id="tab-17"
data-level="0"
class="tab discarded private-browsing unread"
...>
<span class="extra-items-container indent"></span>
<tab-item-substance draggable="true">
<span class="background"></span>
<tab-twisty class="twisty" role="button"></tab-twisty>
<tab-favicon class="favicon" src="...">...</tab-favicon>
<tab-label role="button" class="label" value="New Tab">...</tab-label>
<tab-counter class="counter">0</tab-counter>
<tab-sound-button class="sound-button" role="button"></tab-sound-button>
<tab-closebox class="closebox" role="button" draggable="true"></tab-closebox>
...
</tab-item-substance>
</tab-item>
|
Beta Was this translation helpful? Give feedback.
-
I can't change the border colour for some reason. |
Beta Was this translation helpful? Give feedback.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
-
|
Beta Was this translation helpful? Give feedback.
-
I've been fiddling with my cobbled together CSS and have hit a wall, some guidence would be appreciated!
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
This comment has been minimized.
This comment has been minimized.
-
I have managed to restore all of the appearance settings except for the sidebar background color. I had it gray and it is now white. I would also appreciate the code snippet for this if it is possible to restore. Thanks. |
Beta Was this translation helpful? Give feedback.
This comment has been minimized.
This comment has been minimized.
-
@afgks Could you check my updated comment? |
Beta Was this translation helpful? Give feedback.
-
It's working now, thank you! :D |
Beta Was this translation helpful? Give feedback.
-
Since updating, I've been finding the indentation per level is a bit more than I would like. Is there a way to adjust that with CSS? Previously I had some CSS copied like this:
Putting a negative value (i.e. |
Beta Was this translation helpful? Give feedback.
-
@piroor using the Photon theme, it looks like the bottom tab border is covered by the extra-items-container due to the
Removing margin-bottom, can see bottom border but now not a single line between tabs: Can you think of a way to maintain a visible border around the tab while maintaining a single line between tabs? |
Beta Was this translation helpful? Give feedback.
-
@irvinm |
Beta Was this translation helpful? Give feedback.
-
I wanted some help on fixing indentation for child tabs when the sidebar is in a collapsed state. Could someone help with the code that makes it so that it remains aligned to the sidebar strip with zero margin but appears branched, as it should, when hovered over? Screenshot for reference Thanks! |
Beta Was this translation helpful? Give feedback.
-
@piroor it looks like the first tab needs a little tweak to properly support a full border around that tab. In the original state, it looks like the top margin of the first tab is set to none and hence any border is not properly drawn around the entire tab. Changing the border-top to 1px for :first-of-type seems to resolve the issue. Not sure if this was by design or not. |
Beta Was this translation helpful? Give feedback.
-
hi, i've been using the following CSS snippet /* Style for hovered unloaded tabs */
which is no longer working on the current latest version of TST. instead of applying the style to the tab, it is only applied to the background/indent space, like so would really appreciate a fix if possible!! |
Beta Was this translation helpful? Give feedback.
-
Anything that can be done about this? Note the coloring of tabs overflows to sidebar background. ....Thanks |
Beta Was this translation helpful? Give feedback.
-
The last update skewed the custom styles, the examples in the "Code snippets for custom style rules" do not work correctly. Specifically, the border of the tabs, the indentation of icons and text on the left, the indicator of the active tab, and so on. Photon theme, but largely self-customized.
Beta Was this translation helpful? Give feedback.
All reactions