CSS change in Blog Admin Grid

The only place I could find to change the colors in the grid for the Admin page was under one of the assets subdirectory. However, those folders look like that they are dynamically generated. Where is the master css page for that? I looked at all of the css pages under css and couldn’t find it. Thanks

I found in the api docs where to set the css page that is used by the CGridView so I’m adding to the admin.php page:

<?php $this->widget(‘zii.widgets.grid.CGridView’, array(

'cssFile'=&gt;'/blog/css/gridview/styles.css',


'dataProvider'=&gt;&#036;model-&gt;search(),

(the ‘cssFile’ property) to use my css page and I can edit that for my own colors.

cssFile is great, it works… but… i can’t change that way the css of the Pager, included inside the DataProvider. There is a particular property?