| 1 |
/** |
| 2 |
* TablePress Default CSS |
| 3 |
* |
| 4 |
* Attention: Do not modify this file directly, but use the "Custom CSS" textarea |
| 5 |
* on the "Plugin Options" screen of TablePress. |
| 6 |
* |
| 7 |
* @package TablePress |
| 8 |
* @subpackage Frontend CSS |
| 9 |
* @author Tobias Bäthge |
| 10 |
* @since 1.0.0 |
| 11 |
*/ |
| 12 |
|
| 13 |
/* Default toggle variable for LTR and RTL CSS. */ |
| 14 |
$direction: "ltr" !default; |
| 15 |
|
| 16 |
/* Import TablePress default CSS (basic/general styling). */ |
| 17 |
@use "default-core" with ($direction: $direction); |
| 18 |
|
| 19 |
/* Import TablePress default CSS (DataTables-related code). */ |
| 20 |
@use "default-datatables" with ($direction: $direction); |
| 21 |
|