Minor branding changes and updated dependencies.
- Ran npm update - Split bootstrap css into two phases (web/resources/sass/VirtuBrick.scss) - Updated default icons to use the VirtuBrick logo instead of the Graphictoria logo - Updated readme branding to include VirtuBrick instead of Graphictoria - Removed deployments.txt - Removed outdated docker build batch file - Removed outdated web start batch file
This commit is contained in:
parent
426778c340
commit
cfdc49c20f
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 17 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 18 KiB |
|
|
@ -0,0 +1,41 @@
|
|||
@import "~bootstrap/scss/mixins/banner";
|
||||
@include bsBanner("");
|
||||
|
||||
// Layout & components
|
||||
@import "~bootstrap/scss/root";
|
||||
@import "~bootstrap/scss/reboot";
|
||||
@import "~bootstrap/scss/type";
|
||||
@import "~bootstrap/scss/images";
|
||||
@import "~bootstrap/scss/containers";
|
||||
@import "~bootstrap/scss/grid";
|
||||
@import "~bootstrap/scss/tables";
|
||||
@import "~bootstrap/scss/forms";
|
||||
@import "~bootstrap/scss/buttons";
|
||||
@import "~bootstrap/scss/transitions";
|
||||
@import "~bootstrap/scss/dropdown";
|
||||
@import "~bootstrap/scss/button-group";
|
||||
@import "~bootstrap/scss/nav";
|
||||
@import "~bootstrap/scss/navbar";
|
||||
@import "~bootstrap/scss/card";
|
||||
@import "~bootstrap/scss/accordion";
|
||||
@import "~bootstrap/scss/breadcrumb";
|
||||
@import "~bootstrap/scss/pagination";
|
||||
@import "~bootstrap/scss/badge";
|
||||
@import "~bootstrap/scss/alert";
|
||||
@import "~bootstrap/scss/progress";
|
||||
@import "~bootstrap/scss/list-group";
|
||||
@import "~bootstrap/scss/close";
|
||||
@import "~bootstrap/scss/toasts";
|
||||
@import "~bootstrap/scss/modal";
|
||||
@import "~bootstrap/scss/tooltip";
|
||||
@import "~bootstrap/scss/popover";
|
||||
@import "~bootstrap/scss/carousel";
|
||||
@import "~bootstrap/scss/spinners";
|
||||
@import "~bootstrap/scss/offcanvas";
|
||||
@import "~bootstrap/scss/placeholders";
|
||||
|
||||
// Helpers
|
||||
@import "~bootstrap/scss/helpers";
|
||||
|
||||
// Utilities
|
||||
@import "~bootstrap/scss/utilities/api";
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
// Configuration
|
||||
@import "~bootstrap/scss/functions";
|
||||
@import "~bootstrap/scss/variables";
|
||||
@import "~bootstrap/scss/maps";
|
||||
@import "~bootstrap/scss/mixins";
|
||||
@import "~bootstrap/scss/utilities";
|
||||
|
|
@ -1,9 +1,7 @@
|
|||
// © XlXi 2023
|
||||
|
||||
@use "sass:math";
|
||||
|
||||
// Lumen 5.0.1
|
||||
// Bootswatch
|
||||
@import "BootstrapUtil";
|
||||
|
||||
@import "BrickColors";
|
||||
@import "./scss/fontawesome.scss";
|
||||
|
|
@ -15,12 +13,9 @@
|
|||
@import "./scss/thin.scss";
|
||||
|
||||
@import "Variables";
|
||||
@import "Bootstrap";
|
||||
|
||||
// XlXi: Edit utilities API.
|
||||
// Border is removed because of how stupidly it's handled by Bootstrap. It completely breaks our dark theme.
|
||||
// XlXi: Border is removed because of how stupidly it's handled by Bootstrap. It completely breaks our dark theme.
|
||||
$utilities: map-remove($utilities, "border", "border-top", "border-end", "border-bottom", "border-start");
|
||||
@import "~bootstrap/scss/utilities/api";
|
||||
|
||||
// Variables
|
||||
|
||||
|
|
@ -29,6 +24,8 @@ $web-font-path: "https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,w
|
|||
@import url($web-font-path);
|
||||
}
|
||||
|
||||
@import "BootstrapComponents";
|
||||
|
||||
// Mixins
|
||||
|
||||
@mixin shadow($width: 4px){
|
||||
|
|
|
|||
Loading…
Reference in New Issue