From a578ea612ff6d9a640b76aea79e3d1c229aab9c9 Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Sun, 29 Mar 2020 18:10:15 +0200 Subject: [PATCH] docs(tailwind): interactivity --- frontend/tailwind.css | 49 ++++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 12 deletions(-) diff --git a/frontend/tailwind.css b/frontend/tailwind.css index 61a3193..d419577 100644 --- a/frontend/tailwind.css +++ b/frontend/tailwind.css @@ -2167,44 +2167,69 @@ * APPEARANCE * -------------------- * Utilities for suppressing native form control styling. - * + * By default, only responsive variants are generated for appearance utilities. */ - + +.appearance-none /* appearance: none; */ + /* * CURSOR * -------------------- * 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 * -------------------- * Utilities for controlling an element's outline. - * + * By default, only focus variants are generated for outline utilities. */ - + +.outline-none /* outline: 0; */ + /* * 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 * -------------------- * 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 * -------------------- * 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 * ******************************************************************************************* */