21 lines
578 B
SCSS
21 lines
578 B
SCSS
/**
|
|
* TablePress Default CSS
|
|
*
|
|
* Attention: Do not modify this file directly, but use the "Custom CSS" textarea
|
|
* on the "Plugin Options" screen of TablePress.
|
|
*
|
|
* @package TablePress
|
|
* @subpackage Frontend CSS
|
|
* @author Tobias Bäthge
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
/* Default toggle variable for LTR and RTL CSS. */
|
|
$direction: "ltr" !default;
|
|
|
|
/* Import TablePress default CSS (basic/general styling). */
|
|
@use "default-core" with ($direction: $direction);
|
|
|
|
/* Import TablePress default CSS (DataTables-related code). */
|
|
@use "default-datatables" with ($direction: $direction);
|