Compare commits
2 Commits
04e94739f4
...
a65cd4f9fe
Author | SHA1 | Date |
---|---|---|
ngoomie | a65cd4f9fe | |
ngoomie | 0a56d99f26 |
|
@ -0,0 +1 @@
|
|||
I believe the userChrome CSS for the Tree Style Tabs addon comes from the Github wiki for the addon itself, but I'm genuinely not quite sure atm. Will definitely have to double-check later
|
|
@ -0,0 +1,39 @@
|
|||
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
|
||||
visibility: collapse !important;
|
||||
}
|
||||
|
||||
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* TST 2.4.17 - Fix for #1822 - Fix for Photon themed new tab favicon */
|
||||
#tabbar tab-item:not(.loading) tab-favicon .favicon-image[src^="moz-extension://"][src$="/resources/icons/globe-16.svg"] {
|
||||
display: none;
|
||||
}
|
||||
#tabbar tab-item:not(.loading) tab-favicon .favicon-image[src^="moz-extension://"][src$="/resources/icons/globe-16.svg"] ~ .favicon-default::before {
|
||||
display: inline-block !important;
|
||||
|
||||
background: url("chrome://branding/content/icon32.png") no-repeat center / 100% !important;
|
||||
mask: none !important;
|
||||
}
|
||||
#tabbar tab-item:not(.loading)[data-current-uri="about:privatebrowsing"] tab-favicon .favicon-image[src^="moz-extension://"][src$="/resources/icons/globe-16.svg"] ~ .favicon-default::before {
|
||||
background: url("chrome://browser/skin/privatebrowsing/favicon.svg") no-repeat center / 100% !important;
|
||||
}
|
||||
|
||||
/* TST 2.4.17 - Fix for #1822 - Fix for Photon themed default favicon */
|
||||
tab-item:not(.group-tab):not([data-current-uri^="chrome:"]):not([data-current-uri^="about:addons"]):not([data-current-uri^="about:preferences"])
|
||||
tab-favicon .favicon-default::before {
|
||||
background: url("/sidebar/styles/icons/moon.svg") no-repeat center / 100% !important;
|
||||
mask: none !important;
|
||||
}
|
||||
|
||||
#tabbar:not(.overflow) .after-tabs {
|
||||
display: none;
|
||||
}
|
||||
#tabbar:not(.overflow) ~ .after-tabs {
|
||||
display: block;
|
||||
}
|
|
@ -1,2 +1,4 @@
|
|||
# dotfiles
|
||||
A collection of my dotfiles and other miscellaneous configs and scripts and whatnot
|
||||
|
||||
Unless mentioned otherwise, everything here is licensed under MIT
|
|
@ -1,9 +1,10 @@
|
|||
# awesome config
|
||||
## Deps
|
||||
- picom
|
||||
- [Fira Code](https://github.com/tonsky/FiraCode)
|
||||
- pactl (fc38 `pulseaudio-utils`)
|
||||
## Credits
|
||||
### Widgets/modules/etc I use
|
||||
- `volume_widget` comes from [streetturtle's widgets](https://github.com/streetturtle/awesome-wm-widgets) (MIT // 2017)
|
||||
### Other people's dotfiles I took from lol
|
||||
- Modularization is from [epsi-rns' awesome dotfiles](https://gitlab.com/epsi-rns/dotfiles) (MIT // 2014-2019 E. R. Nurwijayadi)
|
||||
- `volume_widget` comes from [streetturtle's widgets](https://github.com/streetturtle/awesome-wm-widgets) (MIT)
|
||||
### Other people's dotfiles I took from
|
||||
- Modularization is from [epsi-rns' awesome dotfiles](https://gitlab.com/epsi-rns/dotfiles) (MIT)
|
||||
|
|
Loading…
Reference in New Issue