| @@ -9,12 +9,12 @@ | ||
| 9 | 9 | * @author Tobias Bäthge |
| 10 | 10 | * @since 1.0.0 |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -/* Import TablePress default CSS (icon font). */ | |
| 14 | -@import "default-font"; | |
| 13 | +/* Default toggle variable for LTR and RTL CSS. */ | |
| 14 | +$direction: "ltr" !default; | |
| 15 | 15 | |
| 16 | 16 | /* Import TablePress default CSS (basic/general styling). */ |
| 17 | -@import "default-core"; | |
| 17 | +@use "default-core" with ($direction: $direction); | |
| 18 | 18 | |
| 19 | 19 | /* Import TablePress default CSS (DataTables-related code). */ |
| 20 | -@import "default-datatables"; | |
| 20 | +@use "default-datatables" with ($direction: $direction); | |