It already uses bootstrap and I have some other components using the same bootstrap style.
As ATS uses its own bootstrap version (strapper) the ATS screens look slightly different that the rest.
I tried to disable strapper loading using strapper.ini but it also prevent the loading on the backend where I need it because akeeba components looks really bad without it.
I end doing this core change on the strapper.php, but of course it won’t survive an upgrade.
if ($loadBootstrap == 'full') { if ($app1->isAdmin()) {array_unshift($altCss, 'media://akeeba_strapper/css/bootstrap.min.css');} if ($app1->isAdmin()) {self::$scriptURLs[] = FOFTemplateUtils::parsePath('media://akeeba_strapper/js/bootstrap.min.js');} if ($source == 'less') { self::$lessURLs[] = array('media://akeeba_strapper/less/bootstrap.j25.less', $altCss); } }
I wonder if stapped.ini could have some parameters to load it or not in back and front end.
Thanks