Skip to content

Commit

Permalink
Changed: hide cursor on ColorPicker mousedown
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 6, 2012
1 parent 1f98003 commit dff8b0d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion build/ui.css
Expand Up @@ -112,7 +112,9 @@
box-shadow: inset 0 1px 0 white;
}.color-picker canvas {
border: 1px solid #888;
cursor: crosshair;
}
.color-picker canvas:active {
cursor: none;
}

#notifications {
Expand Down
4 changes: 3 additions & 1 deletion lib/components/color-picker/color-picker.css
@@ -1,4 +1,6 @@
.color-picker canvas {
border: 1px solid #888;
cursor: crosshair;
}
.color-picker canvas:active {
cursor: none;
}

0 comments on commit dff8b0d

Please sign in to comment.