connors / photon

The fastest way to build beautiful Electron apps using simple HTML and CSS
photonkit.com
MIT License
10.01k stars 580 forks source link

Input, Button etc. cursor-type #55

Closed janbiasi closed 8 years ago

janbiasi commented 8 years ago

If i hover a button, input, textarea or something else, the cursor remains default. If not already added: Please add the cursor: pointer to those relevant elements! :smile_cat: Thanks!!

connors commented 8 years ago

@janbiasi That behavior is intentional as that's how native applications work.

EmadAdly commented 7 years ago

you can override by add

* {
  cursor: pointer !important;
}

or add it on custom attribute instead of *