Created
July 16, 2015 10:01
-
-
Save ThatCheck/f74fc7f5380207d47f1a to your computer and use it in GitHub Desktop.
CSS for all cursor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* All available css cursor | |
*/ | |
.cursor-alias { | |
cursor: alias; | |
} | |
.cursor-all-scroll { | |
cursor: all-scroll; | |
} | |
.cursor-auto { | |
cursor: auto; | |
} | |
.cursor-cell { | |
cursor: cell; | |
} | |
.cursor-col-resize { | |
cursor: col-resize; | |
} | |
.cursor-context-menu { | |
cursor: context-menu; | |
} | |
.cursor-copy { | |
cursor: copy; | |
} | |
.cursor-crosshair { | |
cursor: crosshair; | |
} | |
.cursor-default { | |
cursor: default; | |
} | |
.cursor-e-resize { | |
cursor: e-resize; | |
} | |
.cursor-ew-resize { | |
cursor: ew-resize; | |
} | |
.cursor-help { | |
cursor: help; | |
} | |
.cursor-move { | |
cursor: move; | |
} | |
.cursor-n-resize { | |
cursor: n-resize; | |
} | |
.cursor-ne-resize { | |
cursor: ne-resize; | |
} | |
.cursor-nesw-resize { | |
cursor: nesw-resize; | |
} | |
.cursor-no-drop { | |
cursor: no-drop; | |
} | |
.cursor-none { | |
cursor: none; | |
} | |
.cursor-not-allowed { | |
cursor: not-allowed; | |
} | |
.cursor-ns-resize { | |
cursor: ns-resize; | |
} | |
.cursor-nw-resize { | |
cursor: nw-resize; | |
} | |
.cursor-nwse-resize { | |
cursor: nwse-resize; | |
} | |
.cursor-pointer { | |
cursor: pointer; | |
} | |
.cursor-progress { | |
cursor: progress; | |
} | |
.cursor-row-resize { | |
cursor: row-resize; | |
} | |
.cursor-s-resize { | |
cursor: s-resize; | |
} | |
.cursor-se-resize { | |
cursor: se-resize; | |
} | |
.cursor-sw-resize { | |
cursor: sw-resize; | |
} | |
.cursor-text { | |
cursor: text; | |
} | |
.cursor-vertical-text { | |
cursor: vertical-text; | |
} | |
.cursor-w-resize { | |
cursor: w-resize; | |
} | |
.cursor-wait { | |
cursor: wait; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment