1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-01 16:04:37 +04:00

Cursor utilities improvements

This commit is contained in:
mrszympek
2019-07-15 20:33:41 +02:00
parent 1d3592c793
commit 054e8d0bf1
3 changed files with 12 additions and 25 deletions
+12
View File
@@ -313,4 +313,16 @@ $utilities: (
loose: 2 !important, loose: 2 !important,
) )
), ),
"cursor": (
property: cursor,
class: cursor,
values: (
auto: auto,
pointer: pointer,
move: move,
not-allowed: not-allowed,
zoom-in: zoom-in,
zoom-out: zoom-out
)
)
) !default; ) !default;
-2
View File
@@ -54,8 +54,6 @@
@import "utils/sizing"; @import "utils/sizing";
@import "utils/opacity"; @import "utils/opacity";
@import "utils/shadow"; @import "utils/shadow";
@import "utils/cursor";
@import "dark"; @import "dark";
@import "rtl"; @import "rtl";
-23
View File
@@ -1,23 +0,0 @@
.cursor-auto {
cursor: auto;
}
.cursor-pointer {
cursor: pointer;
}
.cursor-move {
cursor: move;
}
.cursor-not-allowed {
cursor: not-allowed;
}
.cursor-zoom-in {
cursor: zoom-in;
}
.cursor-zoom-out {
cursor: zoom-out;
}