fixed symlinks of select2 and added missing images + added i18n functions to twig templates (with auto text domain addition) + added rtl stylesheet (updated robofile to watch it separately from admin.styl so it can be included only if necessary

This commit is contained in:
Jonathan Labreuille
2015-07-30 21:25:39 +02:00
parent f9a2d0026c
commit 1ddd74e991
20 changed files with 239 additions and 129 deletions

View File

@ -16,7 +16,11 @@ class RoboFile extends \Robo\Tasks {
function watch() {
$command = array(
'./node_modules/stylus/bin/stylus -u',
'nib -w assets/css/src/admin.styl',
' nib -w'.
// global admin styles
' assets/css/src/admin.styl'.
// rtl specific styles
' assets/css/src/rtl.styl',
'-o assets/css/'
);
$this->_exec(join(' ', $command));