diff --git a/src/css/tools.css b/src/css/tools.css index 0b13b42b..c79d2677 100644 --- a/src/css/tools.css +++ b/src/css/tools.css @@ -31,7 +31,7 @@ .tool-paint-bucket .drawing-canvas-container:hover, .tool-colorswap .drawing-canvas-container:hover { - cursor: url(../img/cursors/paint-bucket.png) 12 12, pointer; + cursor: url(../img/cursors/paint-bucket.png) 14 14, pointer; } .tool-vertical-mirror-pen .drawing-canvas-container:hover { @@ -39,25 +39,28 @@ } .tool-pen .drawing-canvas-container:hover, -.tool-lighten .drawing-canvas-container:hover, .tool-dithering .drawing-canvas-container:hover { - cursor: url(../img/cursors/pen.png) 0 15, pointer; + cursor: url(../img/cursors/pen.png) 1 14, pointer; +} + +.tool-lighten .drawing-canvas-container:hover { + cursor: url(../img/cursors/lighting.png) 1 15, pointer; } .tool-eraser .drawing-canvas-container:hover { - cursor: url(../img/cursors/eraser.png) 0 15, pointer; + cursor: url(../img/cursors/eraser.png) 3 14, pointer; } .tool-stroke .drawing-canvas-container:hover { - cursor: url(../img/cursors/pen.png) 0 15, pointer; + cursor: url(../img/cursors/pen.png) 1 14, pointer; } .tool-rectangle .drawing-canvas-container:hover { - cursor: url(../img/cursors/rectangle.png) 0 15, pointer; + cursor: url(../img/cursors/rectangle.png) 5 15, pointer; } .tool-circle .drawing-canvas-container:hover { - cursor: url(../img/cursors/circle.png) 2 15, pointer; + cursor: url(../img/cursors/circle.png) 5 15, pointer; } .tool-move .drawing-canvas-container:hover { @@ -74,7 +77,7 @@ } .tool-colorpicker .drawing-canvas-container:hover { - cursor: url(../img/cursors/dropper.png) 0 15, pointer; + cursor: url(../img/cursors/dropper.png) 2 15, pointer; } .swap-colors-button { diff --git a/src/img/cursors/lighting.png b/src/img/cursors/lighting.png new file mode 100644 index 00000000..02fede80 Binary files /dev/null and b/src/img/cursors/lighting.png differ