Skip to content

Commit

Permalink
Merge pull request #1460 from scireum/feature/sbi/OX-11120
Browse files Browse the repository at this point in the history
Add some CSS helper class for common cursor variants
  • Loading branch information
sabieber authored Sep 9, 2024
2 parents 65087c6 + 0029799 commit 787d302
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 787d302

Please sign in to comment.