I'm trying to get Yii 1.1.16 to read my custom jQuery-ui.min.css file instead of the one that comes by default.
I tried editing the clientScript in my main.php but cant seem to get it to work.
Here is my code
'components'=>array(
'clientScript'=>array(
'scriptMap' => array(
'jquery-ui.css' => '/css/jquery-ui.min.css',
),
'packages'=>array(
'jquery'=>array(
'baseUrl'=>'js/',
'js'=>array('jquery.min.js'),
),
'jquery.ui'=>array(
'baseUrl'=>'',
'js'=>array('js/jquery-ui.min.js'),
'depends' => array('jquery')
),
),
It adds the default css everytime i call the CJuiButton widget. Any solutions?
main.php) for app.$config = dirname(__FILE__) . '/../app/config/main.php'; Yii::createWebApplication($config)->run();