added tst config

This commit is contained in:
paul-loedige
2021-03-15 17:37:52 +01:00
parent 1f409d17c5
commit 940199569a
2 changed files with 29 additions and 1 deletions
+1
View File
@@ -2,3 +2,4 @@
## Notes ## Notes
1. create hard link from _firefox/userChrome.css_ to _.mozilla/firefox/\<profile>/chrome/userChrome.css 1. create hard link from _firefox/userChrome.css_ to _.mozilla/firefox/\<profile>/chrome/userChrome.css
1. add content of TST-config to the TST config
+27
View File
@@ -0,0 +1,27 @@
/* Hide border on tab bar, force its state to 'scroll', adjust margin-left for width of scrollbar. */
#tabbar { border: 0; overflow-y: scroll !important; margin-left: -12px !important; scrollbar-width: auto; }
/* Hide .twisty and adjust margins so favicons have 7px on left. */
tab-item .twisty {
visibility: hidden;
margin-left: -12px;
}
/* Push tab labels slightly to the right so they're completely hidden in collapsed state */
tab-item .label {
margin-left: 7px;
}
/* Hide close buttons on tabs. */
tab-item .closebox {
visibility: collapse;
}
tab-item:hover .closebox {
visibility: initial;
}
/* Hide sound playing/muted button. */
.sound-button::before {
display: none !important;
}