This package has been deprecated

Author message:

Use Tailwind's JIT engine

tailwindcss-interaction-variants

5.0.0 • Public • Published

BLACK LIVES MATTER

Be aware. Be angry. Do better. Demand change. Show your support any way you can. Click on the link above to find protests, petitions, and other ways to help. DO NOT LET IT GO SILENT.

Interaction Variants Plugin for Tailwind CSS

Requirements

This plugin requires Tailwind CSS 1.2 or later. If your project uses an older version of Tailwind, you should install the latest 2.x version of this plugin (npm install tailwindcss-interaction-variants@2.x).

Installation

npm install tailwindcss-interaction-variants

Usage

// tailwind.config.js
module.exports = {
  theme: {
    backgroundColor: {
      'black': 'black',
    },
  },
  variants: {
    backgroundColor: ['group-focus-within', 'group-focus-visible', 'group-active', 'group-visited', 'group-disabled', 'hocus', 'group-hocus', 'can-hover', 'no-hover'],
  },
  plugins: [
    require('tailwindcss-interaction-variants'),
  ],
};

The above configuration would generate the following CSS:

.bg-black {
  background-color: black;
}
 
.group:focus-within .group-focus-within\:bg-black {
  background-color: black;
}
 
.group:focus-visible .group-focus-visible\:bg-black {
  background-color: black;
}
 
.group:active .group-active\:bg-black {
  background-color: black;
}
 
.group:visited .group-visited\:bg-black {
  background-color: black;
}
 
.group:disabled .group-disabled\:bg-black {
  background-color: black;
}
 
.hocus\:bg-black:hover.hocus\:bg-black:focus {
  background-color: black;
}
 
.group:hover .group-hocus\:bg-black.group:focus .group-hocus\:bg-black {
  background-color: black;
}
 
@media (hover: hover) {
  .can-hover\:bg-black {
    background-color: black;
  }
}
 
@media (hover: none) {
  .no-hover\:bg-black {
    background-color: black;
  }
}

/tailwindcss-interaction-variants/

    Package Sidebar

    Install

    npm i tailwindcss-interaction-variants

    Weekly Downloads

    2,382

    Version

    5.0.0

    License

    ISC

    Unpacked Size

    19.4 kB

    Total Files

    7

    Last publish

    Collaborators

    • benface