Browse Source

Merge pull request #4038 from Rob--W/css-unprefixed-cursor-grab

Add unprefixed "grab" / "grabbing" values for cursor
Jonas Jenwald 12 years ago
parent
commit
356ebf25cc
  1. 2
      web/viewer.css

2
web/viewer.css

@ -1503,12 +1503,14 @@ canvas {
cursor: url("images/grab.cur"), move !important; cursor: url("images/grab.cur"), move !important;
cursor: -webkit-grab !important; cursor: -webkit-grab !important;
cursor: -moz-grab !important; cursor: -moz-grab !important;
cursor: grab !important;
} }
.grab-to-pan-grabbing, .grab-to-pan-grabbing,
.grab-to-pan-grabbing * { .grab-to-pan-grabbing * {
cursor: url("images/grabbing.cur"), move !important; cursor: url("images/grabbing.cur"), move !important;
cursor: -webkit-grabbing !important; cursor: -webkit-grabbing !important;
cursor: -moz-grabbing !important; cursor: -moz-grabbing !important;
cursor: grabbing !important;
} }
.grab-to-pan-grab input, .grab-to-pan-grab input,
.grab-to-pan-grab textarea, .grab-to-pan-grab textarea,

Loading…
Cancel
Save