Skip to content

Commit

Permalink
add help cursor (#3199)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlang committed Jan 29, 2021
1 parent fd45e31 commit 82f1395
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 0 deletions.
24 changes: 24 additions & 0 deletions __tests__/fixtures/tailwind-output-flagged.css
Expand Up @@ -10770,6 +10770,10 @@ video {
cursor: move;
}

.cursor-help {
cursor: help;
}

.cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -39362,6 +39366,10 @@ video {
cursor: move;
}

.sm\:cursor-help {
cursor: help;
}

.sm\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -67911,6 +67919,10 @@ video {
cursor: move;
}

.md\:cursor-help {
cursor: help;
}

.md\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -96460,6 +96472,10 @@ video {
cursor: move;
}

.lg\:cursor-help {
cursor: help;
}

.lg\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -125009,6 +125025,10 @@ video {
cursor: move;
}

.xl\:cursor-help {
cursor: help;
}

.xl\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -153558,6 +153578,10 @@ video {
cursor: move;
}

.\32xl\:cursor-help {
cursor: help;
}

.\32xl\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down
24 changes: 24 additions & 0 deletions __tests__/fixtures/tailwind-output-important.css
Expand Up @@ -10770,6 +10770,10 @@ video {
cursor: move !important;
}

.cursor-help {
cursor: help !important;
}

.cursor-not-allowed {
cursor: not-allowed !important;
}
Expand Down Expand Up @@ -39362,6 +39366,10 @@ video {
cursor: move !important;
}

.sm\:cursor-help {
cursor: help !important;
}

.sm\:cursor-not-allowed {
cursor: not-allowed !important;
}
Expand Down Expand Up @@ -67911,6 +67919,10 @@ video {
cursor: move !important;
}

.md\:cursor-help {
cursor: help !important;
}

.md\:cursor-not-allowed {
cursor: not-allowed !important;
}
Expand Down Expand Up @@ -96460,6 +96472,10 @@ video {
cursor: move !important;
}

.lg\:cursor-help {
cursor: help !important;
}

.lg\:cursor-not-allowed {
cursor: not-allowed !important;
}
Expand Down Expand Up @@ -125009,6 +125025,10 @@ video {
cursor: move !important;
}

.xl\:cursor-help {
cursor: help !important;
}

.xl\:cursor-not-allowed {
cursor: not-allowed !important;
}
Expand Down Expand Up @@ -153558,6 +153578,10 @@ video {
cursor: move !important;
}

.\32xl\:cursor-help {
cursor: help !important;
}

.\32xl\:cursor-not-allowed {
cursor: not-allowed !important;
}
Expand Down
24 changes: 24 additions & 0 deletions __tests__/fixtures/tailwind-output-no-color-opacity.css
Expand Up @@ -9208,6 +9208,10 @@ video {
cursor: move;
}

.cursor-help {
cursor: help;
}

.cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -35244,6 +35248,10 @@ video {
cursor: move;
}

.sm\:cursor-help {
cursor: help;
}

.sm\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -61237,6 +61245,10 @@ video {
cursor: move;
}

.md\:cursor-help {
cursor: help;
}

.md\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -87230,6 +87242,10 @@ video {
cursor: move;
}

.lg\:cursor-help {
cursor: help;
}

.lg\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -113223,6 +113239,10 @@ video {
cursor: move;
}

.xl\:cursor-help {
cursor: help;
}

.xl\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -139216,6 +139236,10 @@ video {
cursor: move;
}

.\32xl\:cursor-help {
cursor: help;
}

.\32xl\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down
24 changes: 24 additions & 0 deletions __tests__/fixtures/tailwind-output.css
Expand Up @@ -10770,6 +10770,10 @@ video {
cursor: move;
}

.cursor-help {
cursor: help;
}

.cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -39362,6 +39366,10 @@ video {
cursor: move;
}

.sm\:cursor-help {
cursor: help;
}

.sm\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -67911,6 +67919,10 @@ video {
cursor: move;
}

.md\:cursor-help {
cursor: help;
}

.md\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -96460,6 +96472,10 @@ video {
cursor: move;
}

.lg\:cursor-help {
cursor: help;
}

.lg\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -125009,6 +125025,10 @@ video {
cursor: move;
}

.xl\:cursor-help {
cursor: help;
}

.xl\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down Expand Up @@ -153558,6 +153578,10 @@ video {
cursor: move;
}

.\32xl\:cursor-help {
cursor: help;
}

.\32xl\:cursor-not-allowed {
cursor: not-allowed;
}
Expand Down
1 change: 1 addition & 0 deletions stubs/defaultConfig.stub.js
Expand Up @@ -141,6 +141,7 @@ module.exports = {
wait: 'wait',
text: 'text',
move: 'move',
help: 'help',
'not-allowed': 'not-allowed',
},
divideColor: (theme) => theme('borderColor'),
Expand Down

0 comments on commit 82f1395

Please sign in to comment.