Material Design Icons
7 |Handcrafted by our friends from 8 | Google 9 |
10 |├── docker ├── mysql │ └── db.sql ├── php-fpm │ ├── php-ini-overrides.ini │ └── Dockerfile ├── scripts │ └── docker.sh ├── docker-compose.yml ├── ssl │ ├── material-dashboard.crt │ └── material-dashboard.key └── nginx │ └── nginx.conf ├── web ├── tests │ ├── _data │ │ └── .gitkeep │ ├── _output │ │ └── .gitignore │ ├── acceptance │ │ ├── _bootstrap.php │ │ ├── AboutCest.php │ │ ├── HomeCest.php │ │ ├── LoginCest.php │ │ └── ContactCest.php │ ├── functional │ │ ├── _bootstrap.php │ │ ├── LoginFormCest.php │ │ └── ContactFormCest.php │ ├── unit │ │ ├── _bootstrap.php │ │ └── models │ │ │ ├── UserTest.php │ │ │ ├── LoginFormTest.php │ │ │ └── ContactFormTest.php │ ├── _bootstrap.php │ ├── unit.suite.yml │ ├── acceptance.suite.yml.example │ ├── functional.suite.yml │ ├── bin │ │ ├── yii.bat │ │ └── yii │ └── _support │ │ ├── FunctionalTester.php │ │ ├── UnitTester.php │ │ └── AcceptanceTester.php ├── runtime │ └── .gitignore ├── web │ ├── assets │ │ └── .gitignore │ ├── robots.txt │ ├── scss │ │ ├── material-dashboard │ │ │ ├── variables │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _drawer.scss │ │ │ │ ├── _body.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _snackbar.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _brand.scss │ │ │ │ ├── _state.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _menu.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _bootstrap-material-design-base.scss │ │ │ │ ├── _shadow.scss │ │ │ │ ├── _forms.scss │ │ │ │ └── _nav.scss │ │ │ ├── bootstrap │ │ │ │ └── scss │ │ │ │ │ ├── utilities │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _align.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _embed.scss │ │ │ │ │ ├── _text.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _borders.scss │ │ │ │ │ └── _flex.scss │ │ │ │ │ ├── _media.scss │ │ │ │ │ ├── mixins │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _navbar-align.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _hover.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _caret.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ └── _gradients.scss │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ ├── _root.scss │ │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ │ ├── _progress.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── bootstrap.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _images.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ └── _type.scss │ │ │ ├── _social-buttons.scss │ │ │ ├── _images.scss │ │ │ ├── mixins │ │ │ │ ├── _type.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _transparency.scss │ │ │ │ ├── _navbar-colors.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _navs.scss │ │ │ │ └── _sidebar-color.scss │ │ │ ├── _mixins.scss │ │ │ ├── cards │ │ │ │ ├── _card-plain.scss │ │ │ │ ├── _card-profile.scss │ │ │ │ └── _card-stats.scss │ │ │ ├── _input-group.scss │ │ │ ├── _ripples.scss │ │ │ ├── _info-areas.scss │ │ │ ├── _example-pages.scss │ │ │ ├── _popover.scss │ │ │ ├── _variables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _headers.scss │ │ │ ├── _type.scss │ │ │ ├── _core-bootstrap.scss │ │ │ ├── _popups.scss │ │ │ ├── _togglebutton.scss │ │ │ ├── _tabs.scss │ │ │ ├── _footers.scss │ │ │ └── _alerts.scss │ │ └── material-dashboard.scss │ ├── favicon.ico │ ├── img │ │ ├── bg2.jpg │ │ ├── city.jpg │ │ ├── cover.jpg │ │ ├── login.jpg │ │ ├── mask.png │ │ ├── favicon.png │ │ ├── new_logo.png │ │ ├── apple-icon.png │ │ ├── faces │ │ │ ├── marc.jpg │ │ │ ├── avatar.jpg │ │ │ ├── card-profile1-square.jpg │ │ │ └── card-profile2-square.jpg │ │ ├── sidebar-1.jpg │ │ ├── sidebar-2.jpg │ │ ├── sidebar-3.jpg │ │ ├── sidebar-4.jpg │ │ ├── city-profile.jpg │ │ └── favicon │ │ │ ├── favicon-128.png │ │ │ ├── mstile-70x70.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-196x196.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-310x310.png.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ └── apple-touch-icon-152x152.png │ ├── .htaccess │ ├── index.php │ ├── index-test.php │ └── demo │ │ └── demo.css ├── vagrant │ ├── config │ │ ├── .gitignore │ │ └── vagrant-local.example.yml │ ├── nginx │ │ ├── log │ │ │ └── .gitignore │ │ └── app.conf │ └── provision │ │ ├── always-as-root.sh │ │ ├── once-as-vagrant.sh │ │ └── once-as-root.sh ├── views │ ├── map │ │ └── index.php │ ├── layouts │ │ ├── content.php │ │ └── footer.php │ ├── site │ │ ├── error.php │ │ └── forgot.php │ └── icons │ │ └── index.php ├── config │ ├── params.php │ ├── test_db.php │ ├── db-docker.php │ ├── db-local.php │ ├── test.php │ ├── console.php │ └── web.php ├── docker-compose.yml ├── yii.bat ├── assets │ └── AppAsset.php ├── yii ├── mail │ └── layouts │ │ └── html.php ├── codeception.yml ├── commands │ └── HelloController.php ├── controllers │ ├── IconsController.php │ ├── MapController.php │ ├── TablesController.php │ ├── DashboardController.php │ ├── TypographyController.php │ ├── NotificationsController.php │ └── RtlController.php ├── LICENSE.md ├── models │ ├── UserForgotForm.php │ ├── UserSearch.php │ └── UserLoginForm.php ├── composer.json ├── widgets │ └── Alert.php └── migrations │ └── m200216_223841_create_user_table.php ├── CHANGELOG.md ├── .gitignore ├── composer.json ├── license.md └── ISSUE_TEMPLATE.md /docker/mysql/db.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /web/tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /web/tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | registerJs( 3 | 'demo.initGoogleMaps();', 4 | yii\web\View::POS_READY, 5 | 'map'); 6 | ?> 7 |
-------------------------------------------------------------------------------- /web/web/img/faces/card-profile1-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/faces/card-profile1-square.jpg -------------------------------------------------------------------------------- /web/web/img/faces/card-profile2-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/faces/card-profile2-square.jpg -------------------------------------------------------------------------------- /web/web/img/favicon/mstile-310x310.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/mstile-310x310.png.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /web/web/img/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderseden/material-dashboard-yii2/HEAD/web/web/img/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/variables/_drawer.scss: -------------------------------------------------------------------------------- 1 | // Drawer 2 | 3 | // Sizing 4 | $bmd-drawer-x-size: 240px !default; 5 | $bmd-drawer-y-size: 100px !default; 6 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | box-shadow: $shadow; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to `Material Dashboard` frontend preset for Yii2 will be documented in this file. 4 | 5 | ## Version 1.0.0 6 | - Initial Release -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | } 7 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | error_log 4 | __MACOSX 5 | .ssh 6 | .composer 7 | .bash_profile 8 | .bash_history 9 | logs 10 | web/vendor 11 | web/config/db.php 12 | web/composer.lock -------------------------------------------------------------------------------- /web/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 5 | 'senderEmail' => 'noreply@example.com', 6 | 'senderName' => 'Example.com mailer', 7 | ]; 8 | 9 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/variables/_body.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | // 3 | // Settings for the `` element. 4 | 5 | $body-bg: #fafafa !default; 6 | //$body-color: $gray-dark !default; 7 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/_social-buttons.scss: -------------------------------------------------------------------------------- 1 | // style for the social buttons from fixed product_plugins (Twitter and Facebook) 2 | 3 | .btn{ 4 | // Social colors 5 | @include bmd-social-buttons(); 6 | } 7 | -------------------------------------------------------------------------------- /web/tests/_bootstrap.php: -------------------------------------------------------------------------------- 1 | amOnPage(Url::toRoute('/site/about')); 10 | $I->see('About', 'h1'); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | @mixin transition($transition...) { 2 | @if $enable-transitions { 3 | @if length($transition) == 0 { 4 | transition: $transition-base; 5 | } @else { 6 | transition: $transition; 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/variables/_tables.scss: -------------------------------------------------------------------------------- 1 | $table-bg-accent: rgba(#000, .03); 2 | $table-border-color: rgba(#000, .06); 3 | $table-bg-hover: rgba(#000, .02); // Grey 100 (on white background) 4 | 5 | $bmd-table-header-font-size: .95rem; 6 | $bmd-table-border-color-inverse: rgba(#fff, .06); 7 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left { 4 | float: left !important; 5 | } 6 | @mixin float-right { 7 | float: right !important; 8 | } 9 | @mixin float-none { 10 | float: none !important; 11 | } 12 | -------------------------------------------------------------------------------- /web/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for unit (internal) tests. 4 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 5 | 6 | class_name: UnitTester 7 | modules: 8 | enabled: 9 | - Asserts 10 | - Yii2: 11 | part: [orm, email, fixtures] 12 | -------------------------------------------------------------------------------- /web/tests/acceptance.suite.yml.example: -------------------------------------------------------------------------------- 1 | class_name: AcceptanceTester 2 | modules: 3 | enabled: 4 | - WebDriver: 5 | url: http://127.0.0.1:8080/ 6 | browser: firefox 7 | - Yii2: 8 | part: orm 9 | entryScript: index-test.php 10 | cleanup: false 11 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 0; 7 | margin: ($spacer / 2) 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | } 11 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide() { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | } 10 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "coderseden/material-dashboard-yii2", 3 | "description": "Material Dashboard Yii2 - Free Frontend Preset for Yii2", 4 | "type": "project", 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "CodersEden", 9 | "email": "hello@coderseden.com" 10 | } 11 | ], 12 | "require": {} 13 | } -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | &[href] { 6 | @include hover-focus { 7 | color: color-yiq($bg); 8 | text-decoration: none; 9 | background-color: darken($bg, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /web/vagrant/provision/always-as-root.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | #== Bash helpers == 4 | 5 | function info { 6 | echo " " 7 | echo "--> $1" 8 | echo " " 9 | } 10 | 11 | #== Provision script == 12 | 13 | info "Provision-script user: `whoami`" 14 | 15 | info "Restart web-stack" 16 | service php7.0-fpm restart 17 | service nginx restart 18 | service mysql restart -------------------------------------------------------------------------------- /web/views/layouts/content.php: -------------------------------------------------------------------------------- 1 | 6 | * @link https://www.coderseden.com 7 | * @copyright 2020 Material Dashboard Yii2 (https://www.coderseden.com) 8 | * @license MIT - https://www.coderseden.com 9 | * @since 1.0 10 | */ 11 | ?> 12 | = $content ?> -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | a#{$parent} { 10 | @include hover-focus { 11 | color: darken($color, 10%) !important; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Width and height 4 | 5 | @each $prop, $abbrev in (width: w, height: h) { 6 | @each $size, $length in $sizes { 7 | .#{$abbrev}-#{$size} { #{$prop}: $length !important; } 8 | } 9 | } 10 | 11 | .mw-100 { max-width: 100% !important; } 12 | .mh-100 { max-height: 100% !important; } 13 | -------------------------------------------------------------------------------- /web/tests/functional.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for functional (integration) tests. 4 | # emulate web requests and make application process them. 5 | # (tip: better to use with frameworks). 6 | 7 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 8 | #basic/web/index.php 9 | class_name: FunctionalTester 10 | modules: 11 | enabled: 12 | - Filesystem 13 | - Yii2 14 | -------------------------------------------------------------------------------- /web/web/scss/material-dashboard/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | @each $breakpoint in map-keys($grid-breakpoints) { 2 | @include media-breakpoint-up($breakpoint) { 3 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 4 | 5 | .float#{$infix}-left { @include float-left; } 6 | .float#{$infix}-right { @include float-right; } 7 | .float#{$infix}-none { @include float-none; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /web/web/index.php: -------------------------------------------------------------------------------- 1 | run(); 13 | -------------------------------------------------------------------------------- /docker/php-fpm/php-ini-overrides.ini: -------------------------------------------------------------------------------- 1 | # 2 | # @package Material Dashboard Yii2 3 | # @author CodersEdenHandcrafted by our friends from 8 | Google 9 |
10 |