-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from Tarinu/master
AdminLTE 3 implementation (without gii)
- Loading branch information
Showing
25 changed files
with
1,163 additions
and
1,284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"dmstr\\": "" | ||
"dmstr\\adminlte\\": "" | ||
} | ||
}, | ||
"repositories": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,77 @@ | ||
<div class="row"> | ||
<div class="col-md-3"> | ||
<div class="box box-default collapsed-box"> | ||
<div class="box-header with-border"> | ||
<h3 class="box-title">Expandable</h3> | ||
<div class="card card-outline card-default collapsed-card"> | ||
<div class="card-header"> | ||
<h3 class="card-title">Expandable</h3> | ||
<div class="box-tools pull-right"> | ||
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i> | ||
</button> | ||
<div class="card-tools"> | ||
<button type="button" class="btn btn-tool" data-card-widget="collapse" type="button"><i class="fa fa-plus"></i></button> | ||
</div> | ||
<!-- /.box-tools --> | ||
<!-- /.card-tools --> | ||
</div> | ||
<!-- /.box-header --> | ||
<div class="box-body" style="display: none;"> | ||
<!-- /.card-header --> | ||
<div class="card-body"> | ||
The body of the box | ||
</div> | ||
<!-- /.box-body --> | ||
<!-- /.card-body --> | ||
</div> | ||
<!-- /.box --> | ||
<!-- /.card --> | ||
</div> | ||
<!-- /.col --> | ||
<div class="col-md-3"> | ||
<div class="box box-success"> | ||
<div class="box-header with-border"> | ||
<h3 class="box-title">Removable</h3> | ||
<div class="card card-success card-outline"> | ||
<div class="card-header"> | ||
<h3 class="card-title">Removable</h3> | ||
<div class="box-tools pull-right"> | ||
<button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button> | ||
<div class="card-tools"> | ||
<button type="button" class="btn btn-tool" data-card-widget="remove" type="button"><i class="fa fa-times"></i></button> | ||
</div> | ||
<!-- /.box-tools --> | ||
<!-- /.card-tools --> | ||
</div> | ||
<!-- /.box-header --> | ||
<div class="box-body"> | ||
<!-- /.card-header --> | ||
<div class="card-body"> | ||
The body of the box | ||
</div> | ||
<!-- /.box-body --> | ||
<!-- /.card-body --> | ||
</div> | ||
<!-- /.box --> | ||
<!-- /.card --> | ||
</div> | ||
<!-- /.col --> | ||
<div class="col-md-3"> | ||
<div class="box box-warning"> | ||
<div class="box-header with-border"> | ||
<h3 class="box-title">Collapsable</h3> | ||
<div class="card card-warning card-outline"> | ||
<div class="card-header"> | ||
<h3 class="card-title">Collapsable</h3> | ||
<div class="box-tools pull-right"> | ||
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i> | ||
</button> | ||
<div class="card-tools"> | ||
<button type="button" class="btn btn-tool" data-card-widget="collapse" type="button"><i class="fa fa-minus"></i></button> | ||
</div> | ||
<!-- /.box-tools --> | ||
<!-- /.card-tools --> | ||
</div> | ||
<!-- /.box-header --> | ||
<div class="box-body"> | ||
<!-- /.card-header --> | ||
<div class="card-body"> | ||
The body of the box | ||
</div> | ||
<!-- /.box-body --> | ||
<!-- /.card-body --> | ||
</div> | ||
<!-- /.box --> | ||
<!-- /.card --> | ||
</div> | ||
<!-- /.col --> | ||
<div class="col-md-3"> | ||
<div class="box box-danger"> | ||
<div class="box-header"> | ||
<h3 class="box-title">Loading state</h3> | ||
<div class="card card-danger card-outline"> | ||
<div class="card-header"> | ||
<h3 class="card-title">Loading state</h3> | ||
</div> | ||
<div class="box-body"> | ||
<div class="card-body"> | ||
The body of the box | ||
</div> | ||
<!-- /.box-body --> | ||
<!-- /.card-body --> | ||
<!-- Loading (remove the following to stop the loading)--> | ||
<div class="overlay"> | ||
<i class="fa fa-refresh fa-spin"></i> | ||
<i class="fas fa-2x fa-sync-alt fa-spin"></i> | ||
</div> | ||
<!-- end loading --> | ||
</div> | ||
<!-- /.box --> | ||
<!-- /.card --> | ||
</div> | ||
<!-- /.col --> | ||
</div> |
Oops, something went wrong.