1 <?php
2 /**
3 * @package Joomla.Libraries
4 * @subpackage Less
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE.txt
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 /**
13 * Formatter ruleset for Joomla formatted CSS generated via LESS
14 *
15 * @package Joomla.Libraries
16 * @subpackage Less
17 * @since 3.4
18 * @deprecated 4.0 without replacement
19 */
20 class JLessFormatterJoomla extends lessc_formatter_classic
21 {
22 public $disableSingle = true;
23
24 public $breakSelectors = true;
25
26 public $assignSeparator = ': ';
27
28 public $selectorSeparator = ',';
29
30 public $indentChar = "\t";
31 }
32