1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-28 19:27:08 +02:00

Merge pull request #101 from Gamerboy59/main

Update resources and remove duplicated webfa files
This commit is contained in:
corbpie 2023-10-06 09:31:54 +11:00 committed by GitHub
commit 2b1cfa0787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 40 additions and 8773 deletions

View File

@ -11,18 +11,18 @@
"license": "MIT",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/guzzle": "^7.8",
"laravel/framework": "^10",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2",
"yajra/laravel-datatables-oracle": "~10.7",
"yajra/laravel-datatables-oracle": "~10.8",
"ext-json": "*",
"doctrine/dbal": "v3.6"
"doctrine/dbal": "^3"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/breeze": "^1.22",
"laravel/sail": "^1.23",
"laravel/breeze": "^1.24",
"laravel/sail": "^1.25",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7",
"phpunit/phpunit": "^10",

View File

@ -12,14 +12,17 @@
},
"devDependencies": {
"axios": "^0.27.2",
"bootstrap": "^5.3.1",
"bootstrap": "^5.3.2",
"bootstrap-dark-5": "^1.1.3",
"bootstrap-data-table": "^1.0.0",
"datatables": "^1.10.18",
"datatables.net-bs": "^1.13.6",
"font-awesome": "^4.7.0",
"jquery": "^3.7.0",
"jquery": "^3.7.1",
"laravel-mix": "^6.0.49",
"resolve-url-loader": "^5.0.0",
"sass": "^1.68.0",
"sass-loader": "^12.6.0",
"vue": "^2.7.14",
"vue-loader": "^17.2.2",
"vue-resource": "^1.5.3",
@ -29,4 +32,4 @@
"@fortawesome/fontawesome-free": "^6.4.2",
"datatables.net-bs5": "^1.13.6"
}
}
}

BIN
public/css/app.css vendored

Binary file not shown.

BIN
public/css/light.css vendored

Binary file not shown.

BIN
public/js/app.js vendored

Binary file not shown.

View File

@ -2,5 +2,9 @@
"/js/app.js": "/js/app.js",
"/css/app.css": "/css/app.css",
"/css/dark.css": "/css/dark.css",
"/css/light.css": "/css/light.css"
"/css/light.css": "/css/light.css",
"/webfonts/fa-regular-400.ttf": "/webfonts/fa-regular-400.ttf",
"/webfonts/fa-regular-400.woff2": "/webfonts/fa-regular-400.woff2",
"/webfonts/fa-solid-900.ttf": "/webfonts/fa-solid-900.ttf",
"/webfonts/fa-solid-900.woff2": "/webfonts/fa-solid-900.woff2"
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 730 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 896 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,2 @@
@import '~@fortawesome/fontawesome-free/css/all.min.css';
@import "datatables.net-bs5";
@import "style.css";

View File

@ -1,7 +1,2 @@
// Body
$body-bg: #f8fafc;
// Typography
$font-family-sans-serif: 'Nunito', sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;
// FontAwesome
$fa-font-path: "webfonts";

View File

@ -1,8 +1,7 @@
// Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito');
// FontAwesome
@import "~@fortawesome/fontawesome-free/scss/fontawesome";
@import "~@fortawesome/fontawesome-free/scss/regular";
@import "~@fortawesome/fontawesome-free/scss/solid";
// Variables
@import 'variables';
// Bootstrap
@import '~bootstrap/scss/bootstrap';
@import 'variables';

22
webpack.mix.js vendored
View File

@ -11,9 +11,21 @@ const mix = require('laravel-mix');
|
*/
mix.js('resources/js/app.js', 'public/js').postCss('resources/css/app.css', 'public/css', [
]);
mix.js('resources/js/app.js', 'public/js').postCss('resources/css/app.css', 'public/css');
mix.sass('resources/sass/app.scss', 'public/css').options({
processCssUrls: false
}).copy(
'node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf',
'public/webfonts/fa-regular-400.ttf'
).copy(
'node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2',
'public/webfonts/fa-regular-400.woff2'
).copy(
'node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf',
'public/webfonts/fa-solid-900.ttf'
).copy(
'node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2',
'public/webfonts/fa-solid-900.woff2'
);
mix.postCss('resources/css/light.css', 'public/css');
mix.postCss('resources/css/dark.css', 'public/css');
mix.postCss('resources/css/dark.css', 'public/css');