-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Template Files - Toolbar buttons missing #143
Comments
OK, looks weird - what version of Thunderbird and SmartTemplates are you using? What OS? |
I'm using Thunderbird 78.13.0 on Windows 10 2004 and SmartTemplates 3.6. It looks the same when dragging down the window. After a bit of digging with the DevTools, I found this CSS rule (added at *|*:root[chromehidden~="menubar"] .chromeclass-menubar, *|*:root[chromehidden~="directories"] .chromeclass-directories, *|*:root[chromehidden~="status"] .chromeclass-status, *|*:root[chromehidden~="extrachrome"] .chromeclass-extrachrome, *|*:root[chromehidden~="location"] .chromeclass-location, *|*:root[chromehidden~="location"][chromehidden~="toolbar"] .chromeclass-toolbar, *|*:root[chromehidden~="toolbar"] .chromeclass-toolbar-additional {
display: none;
} So after adding this CSS rule: .templateList > toolbarbutton {
display: inline;
} the buttons once again display as normal. So I think this has to be added to the add-on's CSS file for it to fix it. |
So I haven'#t see this rule here on Windows 7; I would believe it is this part as the buttons have the class "chromeclass-toolbar-additional". I wonder if this is specific to Windows 10, that would be a bad bug. |
I also tested on my recording PC / DAW which is win10 64bit but the toolbar was visible. Probably no harm in adding the rule anyway. The display value for the buttons here reads as "-moz-box"... |
I added
I wasn't quite sure whether the descendant selector added enough specificity. Can you check this version? (drag into Add-ons manager after downloading, no need to unpack) |
Fixed in 3.7 published 20/08/2021 |
When trying to add a template file, the toolbar buttons for adding, removing or moving a template file are missing. (See attached screenshot)
The text was updated successfully, but these errors were encountered: