QA/Bugzilla/Customization
TDF LibreOffice Document Liberation Project Community Blogs Weblate Nextcloud Redmine Ask LibreOffice Donate
Bugzilla Customization
Creating the userContent.css file
Firefox
- Open Firefox and press Alt to show the top menu, then click on Help → Troubleshooting Information
- Click the Show Folder button beside the Profile Folder entry
- Create a folder named chrome in the directory that opens
- In the chrome folder create a css file with the name userContent.css
- Add the code ( example below ) to the file and save it
- if needed, restart Firefox
Chrome
Not tested yet!!
Bugzilla CSS Classes
- .bz_NEW
- .bz_ASSIGNED
- .bz_CONFIRMED
- .bz_REOPENED
- .bz_blocker
- .bz_critical
- .bz_major
- .bz_normal
- .bz_minor
- .bz_trivial
- .bz_enhancement
Sample code
@-moz-document domain(bugs.documentfoundation.org) {
.bz_enhancement {
opacity: 0.05 !important;
color: #000000 !important;
}
}