BootstrapThemeAsset.php 527 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\bootstrap;

use yii\web\AssetBundle;

/**
 * Bootstrap 2 theme for Bootstrap 3
 *
 * @author Alexander Makarov <sam@rmcreative.ru>
 * @since 2.0
 */
class BootstrapThemeAsset extends AssetBundle
{
20
	public $sourcePath = '@vendor/twbs/bootstrap/dist';
Alexander Makarov committed
21
	public $css = [
callmez committed
22
		'css/bootstrap-theme.css',
Alexander Makarov committed
23 24
	];
	public $depends = [
25
		'yii\bootstrap\BootstrapAsset',
Alexander Makarov committed
26
	];
27
}