QA/Bugzilla/Customization

    From The Document Foundation Wiki
    < QA‎ | Bugzilla


    Bugzilla Customization

    Creating the userContent.css file

    Firefox

    1. Open Firefox and press Alt to show the top menu, then click on Help → Troubleshooting Information
    2. Click the Show Folder button beside the Profile Folder entry
    3. Create a folder named chrome in the directory that opens
    4. In the chrome folder create a css file with the name userContent.css
    5. Add the code ( example below ) to the file and save it
    6. 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;
         }
    }