-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
please update to latest font-awesome #706
Comments
Hello @cornernote ! Font awesome was upgraded to 4.0.3 version and committed to master branch and will be included to next release. Please read carefully next information: Thank you |
Hello @fromYukki |
Hello! @Kev360 can you give me an example? As far as i know hardcoded only bootstrap icons. Font Awesome icons can be disabled at all, and it does not affect any Yii Booster functionality. |
Exemple TbButton widget : |
Hello @Kev360 If you run YiiBooster without any special settings font-awesome will be turned off, and TbButton still will be worked properly with icons from bootstrap. |
…cons" css for Bootstrap, changed logic for icons in widgets
Hello @Kev360 <?php $this->widget('bootstrap.widgets.TbButton', array(
'buttonType' => 'link',
'icon' => 'music',
'label' => 'Bootstrap Icon',
)); ?> And you can use Font-Awesome icons too (in the same time). Example: <?php $this->widget('bootstrap.widgets.TbButton', array(
'buttonType' => 'link',
'icon' => 'fa fa-anchor',
'label' => 'Font-Awesome Icon',
)); ?> Result: http://yii-demo.yukki.name/bootstrap/issue706 Maybe you have any other useful suggestions? |
Thanks !!! |
No description provided.
The text was updated successfully, but these errors were encountered: