From bdba9c5cd344eb29a695895bfe00c2007feb7aa9 Mon Sep 17 00:00:00 2001 From: Kevin Lang Date: Sat, 26 Dec 2020 22:08:58 -0500 Subject: [PATCH] add help cursor --- .../fixtures/tailwind-output-flagged.css | 24 +++++++++++++++++++ .../fixtures/tailwind-output-important.css | 24 +++++++++++++++++++ .../tailwind-output-no-color-opacity.css | 24 +++++++++++++++++++ __tests__/fixtures/tailwind-output.css | 24 +++++++++++++++++++ stubs/defaultConfig.stub.js | 1 + 5 files changed, 97 insertions(+) diff --git a/__tests__/fixtures/tailwind-output-flagged.css b/__tests__/fixtures/tailwind-output-flagged.css index 7086d59f6ab0..72c487da019f 100644 --- a/__tests__/fixtures/tailwind-output-flagged.css +++ b/__tests__/fixtures/tailwind-output-flagged.css @@ -10769,6 +10769,10 @@ video { cursor: move; } +.cursor-help { + cursor: help; +} + .cursor-not-allowed { cursor: not-allowed; } @@ -39361,6 +39365,10 @@ video { cursor: move; } + .sm\:cursor-help { + cursor: help; + } + .sm\:cursor-not-allowed { cursor: not-allowed; } @@ -67910,6 +67918,10 @@ video { cursor: move; } + .md\:cursor-help { + cursor: help; + } + .md\:cursor-not-allowed { cursor: not-allowed; } @@ -96459,6 +96471,10 @@ video { cursor: move; } + .lg\:cursor-help { + cursor: help; + } + .lg\:cursor-not-allowed { cursor: not-allowed; } @@ -125008,6 +125024,10 @@ video { cursor: move; } + .xl\:cursor-help { + cursor: help; + } + .xl\:cursor-not-allowed { cursor: not-allowed; } @@ -153557,6 +153577,10 @@ video { cursor: move; } + .\32xl\:cursor-help { + cursor: help; + } + .\32xl\:cursor-not-allowed { cursor: not-allowed; } diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index 218ec055b799..6446696694df 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -10769,6 +10769,10 @@ video { cursor: move !important; } +.cursor-help { + cursor: help !important; +} + .cursor-not-allowed { cursor: not-allowed !important; } @@ -39361,6 +39365,10 @@ video { cursor: move !important; } + .sm\:cursor-help { + cursor: help !important; + } + .sm\:cursor-not-allowed { cursor: not-allowed !important; } @@ -67910,6 +67918,10 @@ video { cursor: move !important; } + .md\:cursor-help { + cursor: help !important; + } + .md\:cursor-not-allowed { cursor: not-allowed !important; } @@ -96459,6 +96471,10 @@ video { cursor: move !important; } + .lg\:cursor-help { + cursor: help !important; + } + .lg\:cursor-not-allowed { cursor: not-allowed !important; } @@ -125008,6 +125024,10 @@ video { cursor: move !important; } + .xl\:cursor-help { + cursor: help !important; + } + .xl\:cursor-not-allowed { cursor: not-allowed !important; } @@ -153557,6 +153577,10 @@ video { cursor: move !important; } + .\32xl\:cursor-help { + cursor: help !important; + } + .\32xl\:cursor-not-allowed { cursor: not-allowed !important; } diff --git a/__tests__/fixtures/tailwind-output-no-color-opacity.css b/__tests__/fixtures/tailwind-output-no-color-opacity.css index 395ec91d5e85..b153278f50e3 100644 --- a/__tests__/fixtures/tailwind-output-no-color-opacity.css +++ b/__tests__/fixtures/tailwind-output-no-color-opacity.css @@ -9207,6 +9207,10 @@ video { cursor: move; } +.cursor-help { + cursor: help; +} + .cursor-not-allowed { cursor: not-allowed; } @@ -35243,6 +35247,10 @@ video { cursor: move; } + .sm\:cursor-help { + cursor: help; + } + .sm\:cursor-not-allowed { cursor: not-allowed; } @@ -61236,6 +61244,10 @@ video { cursor: move; } + .md\:cursor-help { + cursor: help; + } + .md\:cursor-not-allowed { cursor: not-allowed; } @@ -87229,6 +87241,10 @@ video { cursor: move; } + .lg\:cursor-help { + cursor: help; + } + .lg\:cursor-not-allowed { cursor: not-allowed; } @@ -113222,6 +113238,10 @@ video { cursor: move; } + .xl\:cursor-help { + cursor: help; + } + .xl\:cursor-not-allowed { cursor: not-allowed; } @@ -139215,6 +139235,10 @@ video { cursor: move; } + .\32xl\:cursor-help { + cursor: help; + } + .\32xl\:cursor-not-allowed { cursor: not-allowed; } diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 7086d59f6ab0..72c487da019f 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -10769,6 +10769,10 @@ video { cursor: move; } +.cursor-help { + cursor: help; +} + .cursor-not-allowed { cursor: not-allowed; } @@ -39361,6 +39365,10 @@ video { cursor: move; } + .sm\:cursor-help { + cursor: help; + } + .sm\:cursor-not-allowed { cursor: not-allowed; } @@ -67910,6 +67918,10 @@ video { cursor: move; } + .md\:cursor-help { + cursor: help; + } + .md\:cursor-not-allowed { cursor: not-allowed; } @@ -96459,6 +96471,10 @@ video { cursor: move; } + .lg\:cursor-help { + cursor: help; + } + .lg\:cursor-not-allowed { cursor: not-allowed; } @@ -125008,6 +125024,10 @@ video { cursor: move; } + .xl\:cursor-help { + cursor: help; + } + .xl\:cursor-not-allowed { cursor: not-allowed; } @@ -153557,6 +153577,10 @@ video { cursor: move; } + .\32xl\:cursor-help { + cursor: help; + } + .\32xl\:cursor-not-allowed { cursor: not-allowed; } diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index 0c8eb73745d5..0b65837d6dac 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -141,6 +141,7 @@ module.exports = { wait: 'wait', text: 'text', move: 'move', + help: 'help', 'not-allowed': 'not-allowed', }, divideColor: (theme) => theme('borderColor'),