add help cursor (#3199)

This commit is contained in:
Kevin Lang 2021-01-29 15:01:05 -05:00 committed by GitHub
parent fd45e31f17
commit 82f1395997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 97 additions and 0 deletions

View File

@ -10770,6 +10770,10 @@ video {
cursor: move;
}
.cursor-help {
cursor: help;
}
.cursor-not-allowed {
cursor: not-allowed;
}
@ -39362,6 +39366,10 @@ video {
cursor: move;
}
.sm\:cursor-help {
cursor: help;
}
.sm\:cursor-not-allowed {
cursor: not-allowed;
}
@ -67911,6 +67919,10 @@ video {
cursor: move;
}
.md\:cursor-help {
cursor: help;
}
.md\:cursor-not-allowed {
cursor: not-allowed;
}
@ -96460,6 +96472,10 @@ video {
cursor: move;
}
.lg\:cursor-help {
cursor: help;
}
.lg\:cursor-not-allowed {
cursor: not-allowed;
}
@ -125009,6 +125025,10 @@ video {
cursor: move;
}
.xl\:cursor-help {
cursor: help;
}
.xl\:cursor-not-allowed {
cursor: not-allowed;
}
@ -153558,6 +153578,10 @@ video {
cursor: move;
}
.\32xl\:cursor-help {
cursor: help;
}
.\32xl\:cursor-not-allowed {
cursor: not-allowed;
}

View File

@ -10770,6 +10770,10 @@ video {
cursor: move !important;
}
.cursor-help {
cursor: help !important;
}
.cursor-not-allowed {
cursor: not-allowed !important;
}
@ -39362,6 +39366,10 @@ video {
cursor: move !important;
}
.sm\:cursor-help {
cursor: help !important;
}
.sm\:cursor-not-allowed {
cursor: not-allowed !important;
}
@ -67911,6 +67919,10 @@ video {
cursor: move !important;
}
.md\:cursor-help {
cursor: help !important;
}
.md\:cursor-not-allowed {
cursor: not-allowed !important;
}
@ -96460,6 +96472,10 @@ video {
cursor: move !important;
}
.lg\:cursor-help {
cursor: help !important;
}
.lg\:cursor-not-allowed {
cursor: not-allowed !important;
}
@ -125009,6 +125025,10 @@ video {
cursor: move !important;
}
.xl\:cursor-help {
cursor: help !important;
}
.xl\:cursor-not-allowed {
cursor: not-allowed !important;
}
@ -153558,6 +153578,10 @@ video {
cursor: move !important;
}
.\32xl\:cursor-help {
cursor: help !important;
}
.\32xl\:cursor-not-allowed {
cursor: not-allowed !important;
}

View File

@ -9208,6 +9208,10 @@ video {
cursor: move;
}
.cursor-help {
cursor: help;
}
.cursor-not-allowed {
cursor: not-allowed;
}
@ -35244,6 +35248,10 @@ video {
cursor: move;
}
.sm\:cursor-help {
cursor: help;
}
.sm\:cursor-not-allowed {
cursor: not-allowed;
}
@ -61237,6 +61245,10 @@ video {
cursor: move;
}
.md\:cursor-help {
cursor: help;
}
.md\:cursor-not-allowed {
cursor: not-allowed;
}
@ -87230,6 +87242,10 @@ video {
cursor: move;
}
.lg\:cursor-help {
cursor: help;
}
.lg\:cursor-not-allowed {
cursor: not-allowed;
}
@ -113223,6 +113239,10 @@ video {
cursor: move;
}
.xl\:cursor-help {
cursor: help;
}
.xl\:cursor-not-allowed {
cursor: not-allowed;
}
@ -139216,6 +139236,10 @@ video {
cursor: move;
}
.\32xl\:cursor-help {
cursor: help;
}
.\32xl\:cursor-not-allowed {
cursor: not-allowed;
}

View File

@ -10770,6 +10770,10 @@ video {
cursor: move;
}
.cursor-help {
cursor: help;
}
.cursor-not-allowed {
cursor: not-allowed;
}
@ -39362,6 +39366,10 @@ video {
cursor: move;
}
.sm\:cursor-help {
cursor: help;
}
.sm\:cursor-not-allowed {
cursor: not-allowed;
}
@ -67911,6 +67919,10 @@ video {
cursor: move;
}
.md\:cursor-help {
cursor: help;
}
.md\:cursor-not-allowed {
cursor: not-allowed;
}
@ -96460,6 +96472,10 @@ video {
cursor: move;
}
.lg\:cursor-help {
cursor: help;
}
.lg\:cursor-not-allowed {
cursor: not-allowed;
}
@ -125009,6 +125025,10 @@ video {
cursor: move;
}
.xl\:cursor-help {
cursor: help;
}
.xl\:cursor-not-allowed {
cursor: not-allowed;
}
@ -153558,6 +153578,10 @@ video {
cursor: move;
}
.\32xl\:cursor-help {
cursor: help;
}
.\32xl\:cursor-not-allowed {
cursor: not-allowed;
}

View File

@ -141,6 +141,7 @@ module.exports = {
wait: 'wait',
text: 'text',
move: 'move',
help: 'help',
'not-allowed': 'not-allowed',
},
divideColor: (theme) => theme('borderColor'),