Skip to content

Commit

Permalink
Merge pull request #27 from avored/dev
Browse files Browse the repository at this point in the history
merging dev to master
  • Loading branch information
indpurvesh authored Aug 16, 2018
2 parents f731d84 + 785aa77 commit ab17d0b
Show file tree
Hide file tree
Showing 136 changed files with 2,526 additions and 881 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@
"wiki" : "https://www.avored.com/docs",
"source" : "https://www.github.com/avored/framework"
}
}
}
1 change: 1 addition & 0 deletions config/avored-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

'admin_url' => 'admin',

'symlink_storage_folder' => 'storage',

'cart' => ['session_key' => 'cart_products'],

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ public function up()

Schema::create('admin_users', function (Blueprint $table) {
$table->increments('id');
$table->tinyInteger('is_super_admin')->nullable();
$table->tinyInteger('is_super_admin')->nullable()->default(null);
$table->integer('role_id')->unsigned()->default(null);
$table->string('first_name')->nullable();
$table->string('last_name')->nullable();
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</filter>

<!--logging>
<log type="coverage-html" target="../../../public/cov/framework"
<log type="coverage-html" target="../../public/cov/framework"
lowUpperBound="50" highLowerBound="80"/>
</logging-->
</phpunit>
1 change: 1 addition & 0 deletions resources/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ require('select2');
require('summernote');
require('pc-bootstrap4-datetimepicker');
require('chartjs');
require('sweetalert');
require('jquery-sortable');
window.Vue = require('vue/dist/vue');
window.axios = require('axios');
Expand Down
8 changes: 8 additions & 0 deletions resources/assets/sass/_colors.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$primary : #b71c1c;
$black: #ddd;
$white: #fff;

$body-bg: #f5f5f5;
$bg-site-color: #ff0041;
$bg-site-second-color: #510094;

183 changes: 0 additions & 183 deletions resources/assets/sass/_custom.scss

This file was deleted.

9 changes: 9 additions & 0 deletions resources/assets/sass/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@font-face {
font-weight:normal;
font-style:normal;
font-family:"summernote";
src:url("../fonts/summernote.eot");
src:url("../fonts/summernote.eot?#iefix") format("embedded-opentype"),
url("../fonts/summernote.woff") format("woff"),
url("../fonts/summernote.ttf") format("truetype");
}
19 changes: 12 additions & 7 deletions resources/assets/sass/app.scss
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
// Fonts
$fa-font-path: "../fonts" !default;
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");

@import "_colors";
@import "_fonts";

$primary : #b71c1c;
@import "_variables";
// Dependencies
@import "~bootstrap/scss/bootstrap";


$fa-font-path: "../fonts" !default;
@import "~@fortawesome/fontawesome-free-webfonts/scss/fontawesome";
@import "~@fortawesome/fontawesome-free-webfonts/scss/fa-regular";
@import "~@fortawesome/fontawesome-free-webfonts/scss/fa-solid";
@import "~@fortawesome/fontawesome-free-webfonts/scss/fa-brands";


@import "~select2/src/scss/core";
@import "~summernote/src/less/summernote-bs4";
@import "~pc-bootstrap4-datetimepicker/src/sass/bootstrap-datetimepicker-build";
@import "table";
@import "custom";

// theme partials
@import "partials/theme";
@import "partials/navigation";
@import "partials/icons";
@import "partials/tables";
@import "partials/tags";
@import "partials/widgets";
4 changes: 4 additions & 0 deletions resources/assets/sass/partials/_forms.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.datetime.form-control:disabled,
.datetime.form-control[readonly] {
background: $white;
}
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
@font-face {
font-weight:normal;
font-style:normal;
font-family:"summernote";
src:url("../fonts/summernote.eot");
src:url("../fonts/summernote.eot?#iefix") format("embedded-opentype"),
url("../fonts/summernote.woff") format("woff"),
url("../fonts/summernote.ttf") format("truetype");
}



// Bootstrap Overrides
[class^="note-icon-"]:before,
[class*=" note-icon-"]:before {
Expand Down Expand Up @@ -505,4 +493,3 @@
}

}

Loading

0 comments on commit ab17d0b

Please sign in to comment.