From cce71a38aa696e8be81abee9934b5cfdb9feb28d Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Tue, 17 Mar 2015 13:53:20 -0700 Subject: [PATCH] fix(buttons): Don't use pointer cursor in title bar, or elsewhere for buttons --- static/buttons.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/buttons.less b/static/buttons.less index 737b66d8a..562fb7dbf 100644 --- a/static/buttons.less +++ b/static/buttons.less @@ -1,6 +1,13 @@ @import "ui-variables"; @import "ui-mixins"; +button, html input[type="button"] { + cursor: default; + &:hover, &:active { + cursor: default; + } +} + .btn { border: 0; padding: 0.33em 1em;