style-forge.helpers
Version:
Style-Forge.Helpers: essential CSS helper classes for spacing, alignment, visibility, and more in web development.
50 lines (43 loc) • 1.25 kB
CSS
/* https://developer.mozilla.org/en-US/docs/Web/CSS/cursor */
/* General */
.cur\:a { cursor: auto }
.cur\:d { cursor: default }
.cur\:n { cursor: none }
/* Links & status */
.cur\:cm { cursor: context-menu }
.cur\:h { cursor: help }
.cur\:p { cursor: pointer }
.cur\:pr { cursor: progress }
.cur\:w { cursor: wait }
/* Selection */
.cur\:ce { cursor: cell }
.cur\:ch { cursor: crosshair }
.cur\:t { cursor: text }
.cur\:vt { cursor: vertical-text }
/* Drag & drop */
.cur\:al { cursor: alias }
.cur\:cp { cursor: copy }
.cur\:m { cursor: move }
.cur\:nd { cursor: no-drop }
.cur\:na { cursor: not-allowed }
.cur\:gr { cursor: grab }
.cur\:gg { cursor: grabbing }
/* Resizing & scrolling */
.cur\:as { cursor: all-scroll }
.cur\:cr { cursor: col-resize }
.cur\:rr { cursor: row-resize }
.cur\:nr { cursor: n-resize }
.cur\:er { cursor: e-resize }
.cur\:sr { cursor: s-resize }
.cur\:wr { cursor: w-resize }
.cur\:ner { cursor: ne-resize }
.cur\:nwr { cursor: nw-resize }
.cur\:ser { cursor: se-resize }
.cur\:swr { cursor: sw-resize }
.cur\:ewr { cursor: ew-resize }
.cur\:nsr { cursor: ns-resize }
.cur\:nesw { cursor: nesw-resize }
.cur\:nwse { cursor: nwse-resize }
/* Zooming */
.cur\:zi { cursor: zoom-in }
.cur\:zo { cursor: zoom-out }