You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Використання .less файлів в Bootstrap
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
Якщо ви хочете включити [CSS Bootstrap напряму до ваших less файлів](http://getbootstrap.com/getting-started/#customizing)
|
|
|
|
вам необхідно відключити завантаження оригінальних css файлів bootstrap.
|
|
|
|
Ви можете зробити це, встановивши CSS властивість [[yii\bootstrap\BootstrapAsset|BootstrapAsset]] порожньою.
|
|
|
|
Для цього вам необхідно налаштувати [компонент додатка](https://github.com/yiisoft/yii2/blob/master/docs/guide/structure-application-components.md)
|
|
|
|
`assetManager` наступним чином:
|
|
|
|
|
|
|
|
```php
|
|
|
|
'assetManager' => [
|
|
|
|
'bundles' => [
|
|
|
|
'yii\bootstrap\BootstrapAsset' => [
|
|
|
|
'css' => [],
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|