1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-12-20 17:19:04 +00:00

docs(tailwind): interactivity

This commit is contained in:
Julien Le Coupanec 2020-03-29 18:10:15 +02:00
parent 92ef8999de
commit a578ea612f

View File

@ -2167,44 +2167,69 @@
* APPEARANCE * APPEARANCE
* -------------------- * --------------------
* Utilities for suppressing native form control styling. * Utilities for suppressing native form control styling.
* * By default, only responsive variants are generated for appearance utilities.
*/ */
.appearance-none /* appearance: none; */
/* /*
* CURSOR * CURSOR
* -------------------- * --------------------
* Utilities for controlling the cursor style when hovering over an element. * Utilities for controlling the cursor style when hovering over an element.
* * By default, only responsive variants are generated for cursor utilities.
*/ */
.cursor-auto /* cursor: auto; */
.cursor-default /* cursor: default; */
.cursor-pointer /* cursor: pointer; */
.cursor-wait /* cursor: wait; */
.cursor-text /* cursor: text; */
.cursor-move /* cursor: move; */
.cursor-not-allowed /* cursor: not-allowed; */
/* /*
* OUTLINE * OUTLINE
* -------------------- * --------------------
* Utilities for controlling an element's outline. * Utilities for controlling an element's outline.
* * By default, only focus variants are generated for outline utilities.
*/ */
.outline-none /* outline: 0; */
/* /*
* POINTER EVENTS * POINTER EVENTS
* -------------------- * --------------------
* Utilities for controlling whether an element responds to pointer events. * Utilities for controlling whether an element responds to pointer events.
* * By default, only responsive variants are generated for pointer event utilities.
*/ */
.pointer-events-none /* pointer-events: none; */
.pointer-events-auto /* pointer-events: auto; */
/* /*
* RESIZE * RESIZE
* -------------------- * --------------------
* Utilities for controlling how an element can be resized. * Utilities for controlling how an element can be resized.
* * By default, only responsive variants are generated for resizing utilities.
*/ */
.resize-none /* resize: none; */
.resize /* resize: both; */
.resize-y /* resize: vertical; */
.resize-x /* resize: horizontal; */
/* /*
* USER SELECT * USER SELECT
* -------------------- * --------------------
* Utilities for controlling whether the user can select text in an element. * Utilities for controlling whether the user can select text in an element.
* * By default, only responsive variants are generated for user-select utilities.
*/ */
.select-none /* user-select: none; */
.select-text /* user-select: text; */
.select-all /* user-select: all; */
.select-auto /* user-select: auto; */
/* ******************************************************************************************* /* *******************************************************************************************
* SVG * SVG
* ******************************************************************************************* */ * ******************************************************************************************* */