Files
TweakDrag/Template/layout/variable.php

10 lines
432 B
PHP
Raw Normal View History

2026-07-01 09:51:41 -03:00
<style type="text/css">
:root {
--td-column-gap: <?= (int) $this->app->config('tweakdrag_column_gap_size', 25) ?>px;
2026-07-01 10:30:07 -03:00
--td-handle-size: <?= (int) $this->app->config('tweakdrag_handle_size', 20) ?>px;
2026-07-01 09:51:41 -03:00
}
<?php if ((int) $this->app->config('tweakdrag_column_gap', 1) === 1): ?>
#board { border-collapse: separate !important; border-spacing: var(--td-column-gap, 25px) 0 !important; }
<?php endif ?>
</style>