188BET靠谱吗Dark mode issues with Zotero 6.
The new update is a welcome development.However, I have the following issues with the new update
1.In dark mode (qt) fonts are not visible in the notes section, when not editing, when reading pdfs.
2.188BET靠谱吗The task bar is turned white when a new pdf is opened and this generally distort the dark theme of zotero
3.Hovering over the item panes makes the fonts not visible mostly due to the light blue background and the white colored fonts.
Is there a way to fix all this thank you and keep up the good work
1.In dark mode (qt) fonts are not visible in the notes section, when not editing, when reading pdfs.
2.188BET靠谱吗The task bar is turned white when a new pdf is opened and this generally distort the dark theme of zotero
3.Hovering over the item panes makes the fonts not visible mostly due to the light blue background and the white colored fonts.
Is there a way to fix all this thank you and keep up the good work
In fact, I cannot figure out how to revert to the default dark theme.I cannot find which file contains the information for the dark theme.188BET靠谱吗When looking at dark theme websites, the folders seem different in my user/Zotero folder, and the CSS files are missing.Where is this information stored?This is very disruptive for work as the filenames in the library are completely unreadable after the update.
Is there a temporary workaround to force light theme and solve the issue ?
(maybe analogous to that used for dark theme some time ago as listed in: 188BET靠谱吗https://forums.zotero.org/discussion/70647/dark-theme-for-main-zotero-window-black-background-white-text)
188BET靠谱吗I am running Zotero 6.0.4 on Kubuntu 20.04.4 LTS with KDE Plasma Version 5.18.8.Somewhat happy to know that the problem is not depending on my messy config files after upgrade, but nevertheless annoyed by the issue.
[EDIT]:
as a workaround I installed the dark theme provided here: 188BET靠谱吗https://github.com/Rosmaninho/Zotero-Dark-Theme
This shall solve the visibility issues, at the price of working with dark theme.
Starting from the same code it shall not be too hard to create a coherent light theme (just changing the HEX values) to be used to override the default one.
For the time being I keep using the dark one a I do not have the time of playing with the file!shall I do it before another solution comes out I will keep you informed.
I hope this helps
188BET靠谱吗Exec=bash -c "$(dirname $(realpath $(echo %k | sed -e 's/^file:\/\///')))/zotero -url %U"
included an override for the GTK_THEME variable:
188BET靠谱吗Exec=bash -c "GTK_THEME=Pop $(dirname $(realpath $(echo %k | sed -e 's/^file:\/\///')))/zotero -url %U"
For me the override was to "Pop" but I think ":light" should work for base gnome.
188BET靠谱吗In my case, the `zotero.desktop` was located here: `/usr/share/applications/zotero.desktop`
The desktop entry looked like this:
```
[Desktop Entry]
Type=Application
188BET靠谱吗Name=Zotero
188BET靠谱吗GenericName=Zotero Standalone.Is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources.
188BET靠谱吗Icon=zotero
188BET靠谱吗Exec=env GTK_THEME=Pop /usr/bin/zotero -url %U
Categories=Office
Terminal=false
188BET靠谱吗MimeType=x-scheme-handler/zotero
```
I also had to install the pop theme:
```
yay -S pop-gtk-theme
```
I'm using Arch Linux.
It works!
Had to install pop theme:
```
sudo apt install pop-gtk-theme
```
188BET靠谱吗zotero.desktop` was located here: `/usr/share/applications/zotero.desktop`
Final desktop entry
```
[Desktop Entry]
188BET靠谱吗Name=Zotero
188BET靠谱吗Exec=GTK_THEME=Pop /usr/lib/zotero/zotero --url %u
188BET靠谱吗Icon=/usr/lib/zotero/chrome/icons/default/default256.png
Type=Application
Terminal=false
Categories=Office;
188BET靠谱吗MimeType=x-scheme-handler/zotero;application/x-endnote-refer;application/x-research-info-systems;text/ris;text/x-research-info-systems;application/x-inst-for-Scientific-info;application/mods+xml;\
application/rdf+xml;application/x-bibtex;text/x-bibtex;application/marc;application/vnd.citationstyles.style+xml
X-GNOME-SingleWindow=true
188BET靠谱吗Description=Zotero is a free, easy-to-use tool to help you collect, organize, cite, and share research
```
188BET靠谱吗In my case (Ubuntu 22), even after changing the zotero.desktop file accordingly, nothing changes.
I keep having black text on inactive (black) tabs, impossible to read.
I made sure to have installed the pop-gtk-theme before.
Any github proposed dark-mode don't apply any change either.
What I did was:
1.sudo dnf install adwaita-qt5
188BET靠谱吗# Make a copy of the existing Zotero desktop file if you have not already done so:
2.188BET靠谱吗cp /var/lib/flatpak/exports/share/applications/org.zotero.Zotero.desktop ~/.local/share/applications/org.zotero.Zotero.desktop
# Open the copied desktop file with a text editor, for example:
3.188BET靠谱吗sudo nano ~/.local/share/applications/org.zotero.Zotero.desktop
# Find the line that starts with Exec= and change it as follows:
4.188BET靠谱吗Exec=env GTK_THEME=Adwaita GDK_BACKEND=x11 flatpak run --branch=stable --arch=x86_64 --command=zotero --file-forwarding org.zotero.Zotero @@u%U @@
What we've done:
Save the file and close the text editor.The original desktop file is located in the /var/lib/flatpak/exports/share/applications/ directory, which is reserved for the flatpak applications and their system-wide settings.Changes to this file could be overwritten when the application is updated or affect other users on the same system.By copying the desktop file to your personal ~/.local/share/applications/ directory, we create a user-specific version of the file that takes precedence over the system-wide version.These changes apply only to your user and are not affected by application updates or changes to system-wide settings.
188BET靠谱吗~/.zotero/zotero/xxxxxxxx.default/chrome/userChrome.css
188BET靠谱吗#zotero-item-pane-content .zotero-clicky:hover {
background: none !important;
border-radius: 0pt !important;
border: 1px solid #b35a57 !important!}
thanks to: 188BET靠谱吗https://github.com/Rosmaninho/Zotero-Dark-Theme/blob/main/userChrome.cssfor helping me track down the right css selector
Do I have to copy the whole github code and change that part?
I only copied what you posted and it didn't work.