Skip to content

Commit

Permalink
Add some CSS helper class for common cursor variants
Browse files Browse the repository at this point in the history
Fixes: OX-11120
  • Loading branch information
sabieber committed Sep 9, 2024
1 parent 65087c6 commit 0029799
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions src/main/resources/assets/design-system/misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,46 @@
cursor: pointer;
}

.sci-cursor-default {
cursor: default;
}

.sci-cursor-help {
cursor: help;
}

.sci-cursor-wait {
cursor: wait;
}

.sci-cursor-move {
cursor: move;
}

.sci-cursor-not-allowed {
cursor: not-allowed;
}

.sci-cursor-crosshair {
cursor: crosshair;
}

.sci-cursor-zoom-in {
cursor: zoom-in;
}

.sci-cursor-zoom-out {
cursor: zoom-out;
}

.sci-cursor-text {
cursor: text;
}

.sci-cursor-none {
cursor: none;
}

.sci-border-radius-0 {
border-radius: 0;
}
Expand Down

0 comments on commit 0029799

Please sign in to comment.