CodeRadio Small UX Change

When you hover over keyboard controls the cursor changes to the text cursor instead of the pointer. Wasn’t sure where to put this soooo.

.keyboard-controls {
  cursor: pointer;
}

This is css code for cursor with a “keyboard-controls” class element, if you overwrite it with an id selector, with using !important or writing after this code, it won’t work.

So, you couldn’t just do:

.keyboard-controls:hover {
    cursor: pointer;
}

or 

.display:hover {
    cursor: pointer;
}

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.