UNPKG

448 BSCSSView Raw
1/**
2* Cursor utilities
3*
4* naming convention: gl-cursor-{property-value}
5*/
6@mixin gl-cursor-default {
7 cursor: default;
8}
9
10@mixin gl-cursor-pointer($hover: true) {
11 cursor: pointer;
12}
13
14@mixin gl-cursor-grab {
15 cursor: grab;
16}
17
18@mixin gl-cursor-grabbing {
19 cursor: grabbing;
20}
21
22@mixin gl-cursor-not-allowed {
23 cursor: not-allowed;
24}
25
26@mixin gl-cursor-text {
27 cursor: text;
28}
29
30@mixin gl-cursor-crosshair($hover: true) {
31 cursor: crosshair;
32}