Added custom css class grab-cursor so it turns the cursor into a grab hand instead of a finger, applied this to ticket tasks

This commit is contained in:
johnnyq
2025-02-11 17:24:47 -05:00
parent 7509301f5c
commit f0cc9412bb
5 changed files with 67 additions and 25 deletions

29
css/itflow_custom.css Normal file
View File

@@ -0,0 +1,29 @@
/*
For screens below 576px (xs):
- Make the button full-width, display:block
*/
@media (max-width: 575.98px) {
.btn-responsive {
display: block;
width: 100%;
}
}
/*
For screens 576px (sm) and above:
- Revert to an inline style
*/
@media (min-width: 576px) {
.btn-responsive {
display: inline-block;
width: auto;
}
}
.grab-cursor {
cursor: grab;
}
.grab-cursor:active {
cursor: grabbing;
}