How to change the default row style hover property

(2 posts) (2 voices)

Tags:

  1. -nth-, Member

    I'm attempting to change the default color for mouse over of a row. The default is green and I'd like to go to a light blue. I'm thinking this can be done by overriding the hover properties for that default style in the userstyle.css. But being a novice at css I'm unsure which hover property needs to be modified. Can you give me a nudge in the right direction?

    Thanks!
    -nth-

  2. myDBR Team, Key Master

    Easiest way to find out css styles is open browser's debugger and check the element definition.

    To change the hover color, redefine following definitions either in report of in user/userstyle.css:

    tr.odd:hover td, tr.even:hover td {
    background-color: #B3FF00 !important;
    }

    --
    myDBR Team


Reply

You must log in to post.