In previous versions I was able to add the following to my config:
'coreCss'=>false,
'responsiveCss'=>false,
'yiiCss'=>false,
and then include my own customized bootstrap stylesheets in my layout:
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/default/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/default/css/bootstrap-responsive.css" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/default/css/bootstrap-yii.css" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/default/css/styles.css" />
Trying to add those key=>values to my config returns an exception error stating that those properties are not defined. This definitely appears to be something new in 2.0.x so how do I go about instructing bootstrap to not include css so I can include my own?