first init

This commit is contained in:
arifal
2025-01-16 17:16:14 +07:00
commit 84d8f3ca6a
227 changed files with 43922 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
//
// accordions.scss
//

View File

@@ -0,0 +1,5 @@
// alert.scss
.alert-icon {
padding: $alert-padding-y * 0.5 $alert-padding-y * 0.5;
}

View File

@@ -0,0 +1,59 @@
//
// _avatar.scss
//
// avatar height
.avatar-xs {
height: 1.5rem;
width: 1.5rem;
}
.avatar-sm {
height: 2.25rem;
width: 2.25rem;
}
.avatar {
height: 3rem;
width: 3rem;
}
.avatar-md {
height: 3.5rem;
width: 3.5rem;
}
.avatar-lg {
height: 4.5rem;
width: 4.5rem;
}
.avatar-xl {
height: 6rem;
width: 6rem;
}
.avatar-xxl {
height: 7.5rem;
width: 7.5rem;
}
.avatar-title {
align-items: center;
color: $white;
display: flex;
height: 100%;
width: 100%;
justify-content: center;
}
.avatar-group {
padding-left: 12px;
.avatar-group-item {
margin: 0 0 0 -12px;
display: inline-block;
border: $border-width * 2 solid $border-color;
border-radius: 50%;
}
}

View File

@@ -0,0 +1,25 @@
//
// backgrounds.scss
//
@each $color, $value in $theme-colors-rgb {
.bg-soft-#{$color} {
--#{$prefix}bg-opacity: 0.25;
background-color: rgba(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity)) !important;
}
}
.bg-ghost {
opacity: 0.4;
}
.bg-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100%;
width: 100%;
opacity: 0.7;
}

View File

@@ -0,0 +1,25 @@
//
// _badges.scss
//
// Soft badge
@each $color, $value in $theme-colors-rgb {
.badge-soft-#{$color} {
--#{$prefix}badge-color: var(--#{$prefix}#{$color});
--#{$prefix}bg-opacity: 0.18;
background-color: rgba(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity)) !important;
box-shadow: none;
}
}
// Outline Badge
@each $color, $value in $theme-colors-rgb {
.badge-outline-#{$color} {
--#{$prefix}badge-color: var(--#{$prefix}#{$color});
border: 1px solid var(--#{$prefix}#{$color});
background-color: transparent;
box-shadow: none;
}
}

View File

@@ -0,0 +1,25 @@
//
// breadcrumb.scss
//
// Breadcrumb item arrow
.breadcrumb-item {
>a {
color: var(--#{$prefix}body-color);
&:hover {
color: $primary;
}
}
+.breadcrumb-item {
&::before {
font-family: "boxicons";
font-size: 1rem;
}
}
&.active {
color: $breadcrumb-active-color;
}
}

View File

@@ -0,0 +1,182 @@
//
// buttons.scss
//
.button-list {
margin-left: -8px;
margin-bottom: -8px;
.btn {
margin-bottom: 8px;
margin-left: 8px;
}
}
button:focus {
outline: none;
}
// Icon Button
.btn {
i,
span {
vertical-align: middle;
}
&:focus {
box-shadow: none;
}
.icon {
svg {
width: 1rem;
height: 1rem;
margin-left: 0.1rem;
margin-top: -2px;
}
}
}
// Link buttons (Make a button look and behave like a link)
.btn-link {
font-weight: $font-weight-normal;
color: $link-color;
background-color: transparent;
&:hover {
color: $link-hover-color;
text-decoration: $link-hover-decoration;
background-color: transparent;
border-color: transparent;
}
&:focus {
text-decoration: $link-hover-decoration;
border-color: transparent;
box-shadow: none;
}
&:disabled {
color: $btn-link-disabled-color;
pointer-events: none;
}
}
// Button Extra Small Size
.btn-xs {
padding: 0.2rem 0.6rem;
font-size: 0.75rem;
border-radius: $border-radius-sm;
}
// Soft Variants
@mixin button-variant-soft($bg) {
--#{$prefix}btn-color: #{$bg};
--#{$prefix}btn-bg: #{rgba($bg, 0.1)};
--#{$prefix}btn-border-color: #{transparent};
--#{$prefix}btn-hover-color: #{$white};
--#{$prefix}btn-hover-bg: #{$bg};
--#{$prefix}btn-hover-border-color: #{$bg};
--#{$prefix}btn-active-color: #{$white};
--#{$prefix}btn-active-bg: #{$bg};
--#{$prefix}btn-active-border-color: #{$bg};
--#{$prefix}btn-disabled-color: #{$white};
--#{$prefix}btn-disabled-bg: #{$bg};
--#{$prefix}btn-disabled-border-color: #{$bg};
--#{$prefix}btn-focus-shadow-rgb: 0 0 0 $btn-focus-width rgba($bg, 0.5);
}
// Button Soft
@each $color,
$value in $theme-colors {
.btn-soft-#{$color} {
@include button-variant-soft($value);
}
}
// Button Light and Dark
.btn-light {
--#{$prefix}btn-color: var(--#{$prefix}dark);
--#{$prefix}btn-bg: var(--#{$prefix}light);
--#{$prefix}btn-border-color: var(--#{$prefix}light);
--#{$prefix}btn-hover-color: var(--#{$prefix}dark);
--#{$prefix}btn-hover-bg: var(--#{$prefix}light);
--#{$prefix}btn-hover-border-color: var(--#{$prefix}light);
--#{$prefix}btn-disabled-color: var(--#{$prefix}dark);
--#{$prefix}btn-disabled-bg: var(--#{$prefix}light);
--#{$prefix}btn-disabled-border-color: var(--#{$prefix}light);
}
.btn-dark {
--#{$prefix}btn-color: var(--#{$prefix}light);
--#{$prefix}btn-bg: var(--#{$prefix}dark);
--#{$prefix}btn-border-color: var(--#{$prefix}dark);
--#{$prefix}btn-hover-color: var(--#{$prefix}light);
--#{$prefix}btn-hover-bg: var(--#{$prefix}dark);
--#{$prefix}btn-hover-border-color: var(--#{$prefix}dark);
--#{$prefix}btn-disabled-color: var(--#{$prefix}light);
--#{$prefix}btn-disabled-bg: var(--#{$prefix}dark);
--#{$prefix}btn-disabled-border-color: var(--#{$prefix}dark);
}
.btn-outline-dark {
--#{$prefix}btn-color: var(--#{$prefix}dark);
--#{$prefix}btn-bg: transparent;
--#{$prefix}btn-border-color: var(--#{$prefix}dark);
--#{$prefix}btn-hover-color: var(--#{$prefix}light);
--#{$prefix}btn-hover-bg: var(--#{$prefix}dark);
--#{$prefix}btn-hover-border-color: var(--#{$prefix}dark);
--#{$prefix}btn-active-color: var(--#{$prefix}light);
--#{$prefix}btn-active-bg: var(--#{$prefix}dark);
--#{$prefix}btn-active-border-color: var(--#{$prefix}dark);
--#{$prefix}btn-disabled-color: var(--#{$prefix}light);
--#{$prefix}btn-disabled-bg: var(--#{$prefix}dark);
--#{$prefix}btn-disabled-border-color: var(--#{$prefix}dark);
}
.btn-outline-light {
--#{$prefix}btn-color: var(--#{$prefix}dark);
--#{$prefix}btn-bg: transparent;
--#{$prefix}btn-border-color: var(--#{$prefix}light);
--#{$prefix}btn-hover-color: var(--#{$prefix}dark);
--#{$prefix}btn-hover-bg: var(--#{$prefix}light);
--#{$prefix}btn-hover-border-color: var(--#{$prefix}light);
--#{$prefix}btn-active-color: var(--#{$prefix}dark);
--#{$prefix}btn-active-bg: var(--#{$prefix}light);
--#{$prefix}btn-active-border-color: var(--#{$prefix}light);
--#{$prefix}btn-disabled-color: var(--#{$prefix}dark);
--#{$prefix}btn-disabled-bg: var(--#{$prefix}light);
--#{$prefix}btn-disabled-border-color: var(--#{$prefix}light);
}
.btn-soft-dark {
--#{$prefix}btn-color: var(--#{$prefix}dark);
--#{$prefix}btn-bg: var(--#{$prefix}light);
--#{$prefix}btn-border-color: var(--#{$prefix}light);
--#{$prefix}btn-hover-color: var(--#{$prefix}light);
--#{$prefix}btn-hover-bg: var(--#{$prefix}dark);
--#{$prefix}btn-hover-border-color: var(--#{$prefix}dark);
--#{$prefix}btn-active-color: var(--#{$prefix}light);
--#{$prefix}btn-active-bg: var(--#{$prefix}dark);
--#{$prefix}btn-active-border-color: var(--#{$prefix}dark);
}
// Dark Mode
html[data-bs-theme="dark"] {
.btn-light {
--#{$prefix}btn-active-color: var(--#{$prefix}dark);
--#{$prefix}btn-active-bg: var(--#{$prefix}border-color);
--#{$prefix}btn-active-border-color: var(--#{$prefix}border-color);
}
.btn-dark {
--#{$prefix}btn-active-color: var(--#{$prefix}light);
--#{$prefix}btn-active-bg: var(--#{$prefix}tertiary-color);
--#{$prefix}btn-active-border-color: var(--#{$prefix}tertiary-color);
}
}

View File

@@ -0,0 +1,48 @@
//
// card.scss
//
.card {
margin-bottom: $spacer;
transition: all .35s;
box-shadow: $box-shadow;
// background-image: var(--bs-gradient);
border-style: double;
border-width: 3px;
}
.card-link+.card-link {
margin-left: $card-spacer-x;
margin-right: 0;
}
.card-drop {
font-size: $h4-font-size;
line-height: 0;
color: inherit;
}
.card-height-100 {
height: calc(100% - #{$spacer});
}
// Card title / Card Header
.card-title,
.card-header {
margin-top: 0;
}
.card-title {
font-size: 1rem;
}
.card-subtitle {
margin: 0;
}
.sub-header {
font-size: $font-size-base;
margin-bottom: $spacer;
color: $text-muted;
}

View File

@@ -0,0 +1,131 @@
//
// dropdown.scss
//
.dropdown-toggle::after {
font-family: boxicons;
content: "\ea4a";
position: relative;
display: inline-flex;
top: 3px;
margin-left: 0.255em;
font-size: 16px;
font-weight: 400;
line-height: 1;
text-rendering: auto;
text-transform: none;
}
.btn-sm {
&.dropdown-toggle::after {
top: 1px;
}
}
.arrow-none::after {
display: none;
}
.dropup {
.dropdown-toggle::after {
content: "\ea57";
}
}
.dropend {
.dropdown-toggle::after {
content: "\ea50";
}
}
.dropstart {
.dropdown-toggle::before {
content: "\ea4d";
font-family: boxicons;
position: relative;
top: 2px;
margin-right: 0.255em;
}
.dropdown-toggle::after {
display: none;
}
}
.dropdown-toggle-split {
&::after,
.dropup &::after,
.dropend &::after {
margin-left: 0;
}
.dropstart &::before {
margin-right: 0;
}
}
.dropdown-menu {
box-shadow: $box-shadow-lg;
animation-name: DropDownSlide;
animation-duration: 0.3s;
animation-fill-mode: both;
font-size: $font-size-base;
top: 100%;
&.show {
top: 100% !important;
margin-top: 2px !important;
}
i {
display: inline-block;
}
}
.dropdown-menu-end {
right: 0 !important;
left: auto !important;
}
.dropdown-menu[data-popper-placement^="right"],
.dropdown-menu[data-popper-placement^="top"],
.dropdown-menu[data-popper-placement^="left"] {
top: auto !important;
animation: none !important;
}
@keyframes DropDownSlide {
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
0% {
-webkit-transform: translateY(-3px);
transform: translateY(-3px);
}
}
// Dropdown Large (Custom)
@media (min-width: 600px) {
.dropdown-lg {
width: 320px;
}
}
// Dropdown size
@include media-breakpoint-up(lg) {
.dropdown-mega-menu-xl {
width: 40rem;
}
.dropdown-mega-menu-lg {
width: 26rem;
}
}

View File

@@ -0,0 +1,74 @@
//
// forms.scss
//
// Forms
label {
font-weight: $font-weight-medium;
}
.form-check {
.form-check-input,
label {
cursor: pointer;
}
}
// Form elements (Color and Range)
input.form-control[type="color"],
input.form-control[type="range"] {
min-height: 39px;
}
// Search box
.search-bar {
position: relative;
.form-control {
padding-left: 40px;
padding-right: 20px;
}
span {
position: absolute;
z-index: 10;
font-size: 16px;
top: 8px;
left: 13px;
color: $text-muted;
}
}
// checkbox
.form-check-input {
margin-top: 0.125rem;
&:focus {
box-shadow: none;
}
}
// Color Checkbox and Radio
@each $color,
$value in $theme-colors {
.form-checkbox-#{$color},
.form-radio-#{$color} {
.form-check-input {
&:checked {
background-color: $value;
border-color: $value;
}
}
}
}
.form-todo {
input[type="checkbox"]:checked + label {
text-decoration: line-through;
}
}

View File

@@ -0,0 +1,59 @@
//
// helper.scss
//
// Minimum width
.width-xs {
min-width: 80px;
}
.width-sm {
min-width: 100px;
}
.width-md {
min-width: 120px;
}
.width-lg {
min-width: 140px;
}
.width-xl {
min-width: 160px;
}
// dashed line
@each $color,
$value in $theme-colors {
.border-dashed-#{$color} {
border-bottom: 1px dashed ($value);
}
}
// sticky bar
.sticky-bar {
position: sticky;
z-index: 998;
top: calc(#{$topbar-height} + #{$spacer});
}
//
.flex-box {
display: flex;
align-items: center;
justify-content: center;
height: auto;
width: auto;
}
// cursor
.cursor-pointer {
cursor: pointer;
}
.border-transparent {
--#{$prefix}border-color: transparent !important;
}

View File

@@ -0,0 +1,15 @@
//
// _list-group.scss
//
@each $color,
$value in $theme-colors {
.list-group-item-#{$color} {
color: shade-color($value, 5%);
background-color: rgba($value, .15);
.alert-link {
color: shade-color($value, 20%);
}
}
}

View File

@@ -0,0 +1,54 @@
//
// modal.scss
//
// Title text within header
.modal-title {
margin-top: 0;
}
// Modal full width
.modal-full-width {
width: 95%;
max-width: none;
}
// Modal Positions
.modal-top {
margin: 0 auto;
}
// Bottom modal
.modal-bottom {
display: flex;
flex-flow: column nowrap;
-ms-flex-pack: end;
justify-content: flex-end;
height: 100%;
margin: 0 auto;
align-content: center;
}
// Colored modal header
.modal-colored-header {
color: $white;
border-radius: 0;
.close {
color: $white !important;
}
}
// Full filled modals
.modal-filled {
color: $white;
.modal-header {
background-color: rgba($white, 0.07);
}
.btn-close {
color: $white !important;
}
}

View File

@@ -0,0 +1,75 @@
//
// nav.scss
//
.nav-link {
&.active {
color: $primary;
}
}
.nav-tabs {
.nav-item {
margin-bottom: -2px;
}
li {
a {
border-color: transparent !important;
// padding: 0.375rem 1rem;
}
a.active {
border-bottom: $border-width solid $primary !important;
margin-bottom: 1px;
}
}
}
// pills
.nav-tabs,
.nav-pills {
>li {
>a {
font-weight: $font-weight-semibold;
}
}
}
.nav-pills {
background: var(--#{$prefix}tertiary-bg);
border-radius: $border-radius-sm;
.nav-link {
background-color: transparent;
color: var(--#{$prefix}link-color);
}
.nav-link.active,
.show>.nav-link {
color: $white;
background-color: $primary;
box-shadow: $box-shadow-sm;
}
}
.tab-content {
padding: 20px 0 0 0;
}
.icon-wizard {
.nav-item {
.nav-link {
padding: 11px 14px !important;
box-shadow: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
border-radius: var(--#{$prefix}border-radius) !important;
}
}
}

View File

@@ -0,0 +1,18 @@
//
// pagination.scss
//
.page-link {
i {
vertical-align: middle;
}
}
// Pagination rounded (Custom)
.pagination-rounded {
.page-link {
border-radius: 3px !important;
margin: 0 3px;
border: none;
display: inline;
}
}

View File

@@ -0,0 +1,22 @@
//
// popover.scss
//
.popover {
box-shadow: $box-shadow-lg;
}
.popover-header {
margin-top: 0;
}
@each $color,
$value in $theme-colors {
.#{$color}-popover {
--#{$prefix}popover-max-width: 200px !important;
--#{$prefix}popover-border-color: var(--#{$prefix}#{$color}) !important;
--#{$prefix}popover-header-bg: var(--#{$prefix}#{$color}) !important;
--#{$prefix}popover-header-color: var(--#{$prefix}white) !important;
--#{$prefix}popover-body-padding-x: 1rem !important;
--#{$prefix}popover-body-padding-y: .5rem !important;
}
}

View File

@@ -0,0 +1,24 @@
//
// print.scss
//
// Used invoice page
@media print {
.topbar,
.app-sidebar,
.footer,
.page-title-box {
display: none;
}
.card,
.card-body,
.page-content,
body {
padding: 0;
border: none;
box-shadow: none;
margin: 0 !important;
}
}

View File

@@ -0,0 +1,29 @@
//
// progress.scss
//
// Custom height
.progress-xs {
height: 1px;
}
// Progress height small
.progress-sm {
height: 5px;
}
// Progress height medium
.progress-md {
height: 8px;
}
// Progress height large
.progress-lg {
height: 12px;
}
// Progress height extra large
.progress-xl {
height: 15px;
}

View File

@@ -0,0 +1,30 @@
//
// _reboot.scss
//
body {
overflow-x: hidden;
}
.row>* {
position: relative;
}
.scroll-hidden {
&::-webkit-scrollbar {
-webkit-appearance: none;
appearance: none;
}
&::-webkit-scrollbar:vertical {
width: 0px;
}
}
// Iconify
iconify-icon {
display: inline-block;
width: 1em;
height: 1em;
}

View File

@@ -0,0 +1,98 @@
//
// switch.scss
//
input[data-switch] {
display: none;
+label {
width: 56px;
height: 24px;
background-color: var(--#{$prefix}border-color);
background-image: none;
border-radius: 2rem;
cursor: pointer;
display: inline-block;
text-align: center;
position: relative;
transition: all 0.1s ease-in-out;
&::before {
color: var(--#{$prefix}dark);
content: attr(data-off-label);
display: block;
font-family: inherit;
font-weight: $font-weight-semibold;
font-size: 0.75rem;
line-height: 24px;
position: absolute;
right: 3px;
margin: 0 0.21667rem;
top: 0;
text-align: center;
min-width: 1.66667rem;
overflow: hidden;
transition: all 0.1s ease-in-out;
}
&::after {
content: "";
position: absolute;
left: 4px;
background-color: var(--#{$prefix}link-color);
box-shadow: none;
border-radius: 2rem;
height: 18px;
width: 18px;
top: 3px;
transition: all 0.1s ease-in-out;
}
}
&:checked {
+label {
background-color: $primary;
&::before {
color: $white;
content: attr(data-on-label);
right: auto;
left: 4px;
}
&::after {
left: 34px;
background-color: var(--#{$prefix}tertiary-bg);
}
}
}
}
input[data-switch="bool"] {
+label {
background-color: $danger;
}
}
input:disabled {
+label {
opacity: 0.5;
cursor: default;
}
}
input[data-switch="bool"]+label:before,
input[data-switch="bool"]:checked+label:before {
color: $white !important;
}
input[data-switch="bool"]+label:after {
background-color: var(--#{$prefix}tertiary-bg);
}
@each $color,
$value in $theme-colors {
input[data-switch="#{$color}"]:checked+label {
background-color: #{$value};
}
}

View File

@@ -0,0 +1,64 @@
//
// tables.scss
//
th {
font-weight: $font-weight-medium;
}
// Table centered
.table-centered {
td,
th {
vertical-align: middle !important;
}
}
// Table
.table-nowrap {
th,
td {
white-space: nowrap;
}
}
// Custom table components
.table {
tbody tr:last-child td {
border-bottom: 0px;
}
&.table-dashed>:not(caption)>*>* {
border-style: dashed;
}
.table-user {
img {
height: 30px;
width: 30px;
}
}
.action-icon {
color: var(--#{$prefix}body-color);
font-size: 1.2rem;
display: inline-block;
padding: 0 3px;
&:hover {
color: var(--#{$prefix}tertiary-color);
}
}
}
html[data-bs-theme="dark"] {
.table-light {
--#{$prefix}table-color: var(--#{$prefix}body-color);
--#{$prefix}table-bg: var(--#{$prefix}light);
--#{$prefix}table-border-color: #{$table-group-separator-color};
}
}

View File

@@ -0,0 +1,10 @@
//
// tooltip.scss
//
@each $color,
$value in $theme-colors {
.#{$color}-tooltip {
--#{$prefix}tooltip-bg: var(--#{$prefix}#{$color}) !important;
}
}

View File

@@ -0,0 +1,22 @@
//
// type.scss
//
// Font sizes (Custom)
$font-size-mixing: 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 48,60;
@each $font-size-mixing in $font-size-mixing {
.fs-#{$font-size-mixing} {
font-size: #{$font-size-mixing}px !important;
}
}
// text utilities
.text-unline-dashed {
border-bottom: $border-width dashed $border-color !important;
}
.text-dark {
color: var(--#{$prefix}headings-color) !important;
}

View File

@@ -0,0 +1,201 @@
//
// widgets.scss
//
.widget-icon {
font-size: 5rem;
position: absolute;
right: -25px;
bottom: -15px;
opacity: 0.2;
animation: bounce 7s ease infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-10px);}
60% {transform: translateY(-5px);}
}
// milestones
.milestones {
position: relative;
padding-left: 25px;
&::after {
width: 10px;
height: 10px;
border-radius: 50%;
background: $primary;
position: absolute;
top: 2px;
left: 0;
content: "";
}
&::before {
height: 75px;
width: 2px;
position: absolute;
top: 15px;
bottom: 5px;
left: 4px;
right: 0;
background: var(--#{$prefix}border-color);
content: "";
}
&:last-child {
&::before {
height: 28px;
}
}
}
// chat
.conversation-list {
list-style: none;
height: 332px;
padding: 0 7px;
li {
margin-bottom: 24px;
}
.chat-avatar {
float: left;
text-align: center;
width: 38px;
img {
border-radius: 100%;
width: 100%;
}
i {
font-size: 12px;
font-style: normal;
}
}
.ctext-wrap {
background: var(--#{$prefix}light);
color: $primary;
border-radius: $border-radius-sm;
display: inline-block;
padding: 4px 12px;
position: relative;
// min-width: 160px;
i {
display: block;
font-size: 12px;
font-style: normal;
font-weight: $font-weight-bold;
position: relative;
}
p {
margin: 0;
padding-top: 3px;
}
}
.conversation-text {
float: left;
font-size: 12px;
margin-left: 12px;
width: 70%;
}
.odd {
.chat-avatar {
float: right !important;
}
.conversation-text {
float: right !important;
margin-right: 12px;
text-align: right;
width: 70% !important;
}
.ctext-wrap {
background-color: $primary;
color: $white;
}
}
}
// project activity
.activity {
.activity-list {
display: flex;
position: relative;
&::before {
position: absolute;
text-align: center;
content: "\F4FE";
font-family: "bootstrap-icons";
font-size: 22px;
color: $white;
left: 56px;
top: -6px;
z-index: 1;
}
&::after {
content: "";
position: absolute;
left: 57px;
top: 0;
height: 20px;
width: 20px;
background: $primary;
border-radius: 50%;
}
}
}
// project activity
.activity-widget {
.activity-list {
border-bottom: $border-width solid $border-color;
padding: 10px 0px;
&:last-child {
border: none;
}
}
}
// chart card
.chart-card {
.left-chart-card {
padding-right: $spacer;
border-right: $border-width solid $border-color;
}
.right-chart-card {
padding-left: $spacer;
}
}
@include media-breakpoint-down(lg) {
.chart-card {
.left-chart-card {
padding-right: $spacer * 0.5;
padding-bottom: $spacer;
border-right: 0;
border-bottom: $border-width solid $border-color;
}
.right-chart-card {
padding-left: $spacer * 0.5;
padding-top: $spacer;
}
}
}

View File

@@ -0,0 +1,121 @@
//
// _theme-mode.scss
//
/* Root Prefix Variable */
:root {
--#{$prefix}logo-lg-height: 26px;
--#{$prefix}logo-sm-height: 24px;
--#{$prefix}sidebar-width: 250px;
--#{$prefix}sidebar-width-sm: 75px;
--#{$prefix}sidebar-item-icon-size: 18px;
--#{$prefix}sidebar-item-font-size: 15px;
--#{$prefix}sidebar-item-padding-x: 15px;
--#{$prefix}sidebar-item-padding-y: 10px;
--#{$prefix}sidebar-item-margin-y: 2px;
--#{$prefix}topbar-height: 70px;
--#{$prefix}footer-height: 60px;
--#{$prefix}input-border-color: #d8dfe7;
--#{$prefix}input-focus-border-color: #b0b0bb;
}
/* Dark Mode only */
html[data-bs-theme="dark"],
[data-bs-theme="dark"] {
--#{$prefix}border-color: #2f3944;
--#{$prefix}light: #{$body-tertiary-bg-dark};
--#{$prefix}dark: #{$body-tertiary-color-dark};
--#{$prefix}light-rgb: #{to-rgb($body-tertiary-bg-dark)};
--#{$prefix}dark-rgb: #{to-rgb($body-tertiary-color-dark)};
// Heading Variable
--#{$prefix}headings-color: #{$body-color-dark};
--#{$prefix}input-border-color: #3a4551;
--#{$prefix}input-focus-border-color: #4a5663;
}
/* Color system - Dark Mode only */
html[data-bs-theme="dark"],
[data-bs-theme="dark"] {
--#{$prefix}border-color: #272f37;
--#{$prefix}light: #{$body-tertiary-bg-dark};
--#{$prefix}dark: #{$body-tertiary-color-dark};
--#{$prefix}light-rgb: #{to-rgb($body-tertiary-bg-dark)};
--#{$prefix}dark-rgb: #{to-rgb($body-tertiary-color-dark)};
// Heading Variable
--#{$prefix}headings-color: #{$body-color-dark};
--#{$prefix}input-border-color: #3a4551;
--#{$prefix}input-focus-border-color: #4a5663;
}
/* Main sidebar Light */
html[data-sidebar-color="light"]{
--#{$prefix}sidebar-bg: #ffffff;
--#{$prefix}sidebar-item-color: #6e708c;
--#{$prefix}sidebar-item-hover-bg: #f4f3f6;
--#{$prefix}sidebar-item-hover-color: #3d4756;
--#{$prefix}sidebar-border-color: #eaedf1;
}
/* Main sidebar Dark */
html[data-sidebar-color="dark"] {
--#{$prefix}sidebar-bg: #393f4a;
--#{$prefix}sidebar-item-color: #afb9cf;
--#{$prefix}sidebar-item-hover-bg: #4697ce;
--#{$prefix}sidebar-item-hover-color: #{$white};
--#{$prefix}sidebar-border-color: #272f37;
}
/* Main sidebar Dark (Dark Mode Only) */
html[data-bs-theme="dark"][data-sidebar-color="dark"],
html[data-bs-theme="dark"][data-sidebar-color="light"] {
--#{$prefix}sidebar-bg: #1d2329;
--#{$prefix}sidebar-item-color: #afb9cf;
--#{$prefix}sidebar-item-hover-bg: #2a3139;
--#{$prefix}sidebar-item-hover-color: #{$white};
--#{$prefix}sidebar-border-color: #272f37;
}
/* Topbar Light */
html[data-topbar-color="light"] {
--#{$prefix}topbar-bg: #ffffff;
--#{$prefix}topbar-item-color: #707793;
--#{$prefix}topbar-search-bg: #f8f7fa;
}
/* Topbar Dark */
html[data-topbar-color="dark"] {
--#{$prefix}topbar-bg: #393f4a;
--#{$prefix}topbar-item-color: #afb9cf;
--#{$prefix}topbar-search-bg: #424957;
}
/* Topbar Dark (Dark Mode Only) */
html[data-bs-theme="dark"][data-topbar-color="dark"],
html[data-bs-theme="dark"][data-topbar-color="light"] {
--#{$prefix}topbar-bg: #1d2329;
--#{$prefix}topbar-item-color: #afb9cf;
--#{$prefix}topbar-search-bg: #232a31;
}

View File

@@ -0,0 +1,91 @@
// Dark color mode variables
//
// Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
//
// Global Colors
//
// scss-docs-start sass-dark-mode-vars
$primary-text-emphasis-dark: tint-color($primary, 40%);
$secondary-text-emphasis-dark: tint-color($secondary, 40%);
$success-text-emphasis-dark: tint-color($success, 40%);
$info-text-emphasis-dark: tint-color($info, 40%);
$warning-text-emphasis-dark: tint-color($warning, 40%);
$danger-text-emphasis-dark: tint-color($danger, 40%);
$light-text-emphasis-dark: $gray-100;
$dark-text-emphasis-dark: $gray-300;
// scss-docs-end theme-text-dark-variables
// scss-docs-start theme-bg-subtle-dark-variables
$primary-bg-subtle-dark: rgba($primary, 15%);
$secondary-bg-subtle-dark: rgba($gray-700, 15%);
$success-bg-subtle-dark: rgba($success, 15%);
$info-bg-subtle-dark: rgba($info, 15%);
$warning-bg-subtle-dark: rgba($warning, 15%);
$danger-bg-subtle-dark: rgba($danger, 15%);
$light-bg-subtle-dark: rgba(var(--#{$prefix}light-rgb), .15);
$dark-bg-subtle-dark: rgba(var(--#{$prefix}dark-rgb), .15);
// scss-docs-end theme-bg-subtle-dark-variables
// scss-docs-start theme-border-subtle-dark-variables
$primary-border-subtle-dark: shade-color($primary, 40%);
$secondary-border-subtle-dark: $gray-700;
$success-border-subtle-dark: shade-color($success, 40%);
$info-border-subtle-dark: shade-color($info, 40%);
$warning-border-subtle-dark: shade-color($warning, 40%);
$danger-border-subtle-dark: shade-color($danger, 40%);
$light-border-subtle-dark: $gray-700;
$dark-border-subtle-dark: $gray-500;
// scss-docs-end theme-border-subtle-dark-variables
$body-color-dark: #aab8c5;
$body-bg-dark: #191e23;
$body-secondary-color-dark: #8391a2;
$body-secondary-bg-dark: #1d2329;
$body-tertiary-color-dark: #f1f1f1;
$body-tertiary-bg-dark: #242b33;
$body-emphasis-color-dark: #dee2e6;
$border-color-dark: #272f37;
$border-color-translucent-dark: #8391a2;
$headings-color-dark: $body-color-dark;
$link-color-dark: #afb9cf;
$link-hover-color-dark: shift-color($link-color-dark, -$link-shade-percentage);
$code-color-dark: tint-color($code-color, 40%);
$mark-color-dark: $body-color-dark;
$mark-bg-dark: $yellow-800;
//
// Forms
//
$form-select-indicator-color-dark: $body-color-dark;
$form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>");
$form-switch-color-dark: rgba($white, .25);
$form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>");
// scss-docs-start form-validation-colors-dark
$form-valid-color-dark: $green-300;
$form-valid-border-color-dark: $green-300;
$form-invalid-color-dark: $red-300;
$form-invalid-border-color-dark: $red-300;
// scss-docs-end form-validation-colors-dark
//
// Accordion
//
$accordion-icon-color-dark: $primary-text-emphasis-dark;
$accordion-icon-active-color-dark: $primary-text-emphasis-dark;
$accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-color-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
$accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-active-color-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
// scss-docs-end sass-dark-mode-vars

File diff suppressed because it is too large Load Diff

6
resources/scss/icons.scss Executable file
View File

@@ -0,0 +1,6 @@
//
// icons.scss
//
// Icon files
@import "icons/boxicons";

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,55 @@
//
// authentication.scss
//
body {
&.authentication-bg {
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
.account-pages {
align-items: center;
display: flex;
min-height: 100vh;
}
}
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.auth-logo {
.logo-dark {
display: block;
}
.logo-light {
display: none;
}
}
html[data-bs-theme="dark"] {
.auth-logo {
.logo-dark {
display: none;
}
.logo-light {
display: block;
}
}
}

View File

@@ -0,0 +1,7 @@
.icon-box {
// height: 100px;
width: 142px;
margin-bottom: 0 !important;
}

View File

@@ -0,0 +1,204 @@
//
// apexcharts.scss
//
.apex-charts {
min-height: 10px !important;
text {
font-family: $font-family-base !important;
font-weight: $font-weight-medium;
fill: $headings-color;
}
.apexcharts-canvas {
margin: 0 auto;
}
.apexcharts-title-text {
fill: $headings-color;
}
}
.apexcharts-bar-series {
path {
stroke: $border-color;
}
}
.apexcharts-xaxis-tick {
fill: $border-color;
}
.apexcharts-gridline {
pointer-events: none;
stroke: var(--#{$prefix}light);
}
.apexcharts-legend-text {
color: $text-muted !important;
}
.apexcharts-grid-row {
fill: $input-bg;
}
.apexcharts-pie-area {
stroke: $border-color;
}
.apexcharts-tracks {
.apexcharts-radialbar-track {
path {
stroke: var(--#{$prefix}light);
}
}
}
.apexcharts-tooltip-title,
.apexcharts-tooltip-text {
font-family: $font-family-base !important;
}
.apexcharts-tooltip {
border: 1px solid var(--#{$prefix}border-color) !important;
background-color: $card-bg !important;
box-shadow: $box-shadow !important;
* {
font-family: $font-family-base !important;
color: var(--#{$prefix}body-color) !important;
}
.apexcharts-tooltip-title {
background-color: rgba(var(--#{$prefix}light-rgb), .75) !important;
border-bottom: 1px solid var(--#{$prefix}border-color) !important;
}
}
.apexcharts-tooltip.apexcharts-theme-dark {
* {
color: $white !important;
}
}
.apexcharts-legend-series {
font-weight: $font-weight-medium;
}
.apexcharts-gridline {
pointer-events: none;
stroke: rgba(var(--#{$prefix}light-rgb), .75);
}
.apexcharts-legend-text {
color: var(--#{$prefix}body-color) !important;
font-family: $font-family-base !important;
font-size: 13px !important;
}
.apexcharts-pie-label {
fill: $white !important;
}
.apexcharts-title-text,
.apexcharts-subtitle-text {
fill: var(--#{$prefix}link-color);
font-family: $font-family-base !important;
}
.apexcharts-yaxis,
.apexcharts-xaxis {
text {
font-family: $font-family-base !important;
fill: var(--#{$prefix}link-color);
}
}
.apexcharts-yaxis-title {
font-weight: 500;
}
// column dynamic loaded chart
#dynamicloadedchart-wrap {
margin: 0px auto;
max-width: 800px;
position: relative;
}
.chart-box {
padding-left: 0;
}
#chart-year,
#chart-quarter {
width: 96%;
max-width: 48%;
box-shadow: none;
padding-left: 0;
padding-top: 20px;
background: $card-bg;
border: 1px solid $border-color;
}
#chart-year {
float: left;
position: relative;
transition: 1s ease transform;
z-index: 3;
&.chart-quarter-activated {
transform: translateX(0);
transition: 1s ease transform;
}
}
#chart-quarter {
float: left;
position: relative;
z-index: -2;
transition: 1s ease transform;
&.active {
transition: 1.1s ease-in-out transform;
transform: translateX(0);
z-index: 1;
}
}
@media screen and (min-width: 480px) {
#chart-year {
transform: translateX(50%);
}
#chart-quarter {
transform: translateX(-50%);
}
}
// radar chart
.apexcharts-radar-series {
polygon,
line {
stroke: $border-color;
}
}
.apexcharts-pie {
circle,
line {
stroke: $border-color;
}
text {
fill: var(--#{$prefix}body-color);
}
}

View File

@@ -0,0 +1,23 @@
//
// dropzone.scss
//
.dropzone {
border: 2px dashed $input-border-color;
background: $input-bg;
border-radius: 6px;
cursor: pointer;
min-height: 150px;
padding: 20px;
.dz-message {
text-align: center;
margin: 2rem 0;
}
&.dz-started {
.dz-message {
display: none;
}
}
}

View File

@@ -0,0 +1,95 @@
//
// editors.scss
//
.ql-editor {
text-align: left;
ol,
ul {
padding-left: 1.5em;
padding-right: 0;
}
li:not(.ql-direction-rtl)::before {
margin-left: -1.5em;
margin-right: 0.3em;
text-align: right;
}
}
.ql-container {
font-family: $font-family-base;
&.ql-snow {
border-color: $input-border-color;
border-radius: 0 0 $input-border-radius $input-border-radius;
}
}
.ql-bubble {
border: $input-border-width solid $input-border-color;
border-radius: $input-border-radius;
}
.ql-toolbar {
font-family: $font-family-base !important;
span {
outline: none !important;
color: $dropdown-link-color;
&:hover {
color: $primary !important;
}
}
&.ql-snow {
border-radius: $input-border-radius $input-border-radius 0 0;
border-color: $input-border-color;
.ql-picker.ql-expanded {
.ql-picker-label {
border-color: transparent;
}
}
.ql-picker-options {
box-shadow: $dropdown-box-shadow;
border-radius: $dropdown-border-radius;
}
}
}
.ql-snow {
.ql-stroke,
.ql-script,
.ql-strike svg {
stroke: $dropdown-link-color;
}
.ql-fill {
fill: $dropdown-link-color;
}
.ql-picker:not(.ql-color-picker):not(.ql-icon-picker) {
svg {
right: 0;
left: auto;
}
}
.ql-picker {
&.ql-expanded .ql-picker-label {
color: $dropdown-link-color;
}
}
}
.ql-snow {
.ql-picker-options {
background-color: $card-bg;
border-color: $dropdown-border-color !important;
}
}

View File

@@ -0,0 +1,149 @@
//
// flatpickr.scss
//
.flatpickr-calendar {
background: $card-bg;
box-shadow: $box-shadow;
border: 1px solid $dropdown-border-color;
&.arrowTop {
&:before {
border-bottom-color: $card-bg;
}
&:after {
border-bottom-color: $card-bg;
}
}
&.arrowBottom {
&:before,
&:after {
border-top-color: $card-bg;
}
}
}
.flatpickr-current-month {
font-size: 110%;
}
.flatpickr-day {
&.selected,
&.startRange,
&.endRange,
&.selected.inRange,
&.startRange.inRange,
&.endRange.inRange,
&.selected:focus,
&.startRange:focus,
&.endRange:focus,
&.selected:hover,
&.startRange:hover,
&.endRange:hover,
&.selected.prevMonthDay,
&.startRange.prevMonthDay,
&.endRange.prevMonthDay,
&.selected.nextMonthDay,
&.startRange.nextMonthDay,
&.endRange.nextMonthDay {
background: $primary;
border-color: $primary;
}
&.selected.startRange+.endRange:not(:nth-child(7n+1)),
&.startRange.startRange+.endRange:not(:nth-child(7n+1)),
&.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
box-shadow: -10px 0 0 $primary;
}
}
.flatpickr-time {
input:hover,
.flatpickr-am-pm:hover,
input:focus,
.flatpickr-am-pm:focus {
background: $input-bg;
color: $dropdown-link-active-color;
}
}
.flatpickr-months {
.flatpickr-month {
height: 36px;
}
.flatpickr-prev-month,
.flatpickr-next-month,
.flatpickr-month {
color: var(--#{$prefix}link-color);
fill: var(--#{$prefix}link-color);
}
}
.flatpickr-weekdays {
background-color: $dropdown-link-active-bg;
}
span.flatpickr-weekday,
.flatpickr-day,
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover,
.flatpickr-time input,
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
color: $dropdown-link-color;
fill: $dropdown-link-color;
}
.flatpickr-day {
&.disabled,
&.disabled:hover,
&.prevMonthDay,
&.nextMonthDay,
&.notAllowed,
&.notAllowed.prevMonthDay,
&.notAllowed.nextMonthDay {
color: $dropdown-link-disabled-color;
}
&.inRange,
&.prevMonthDay.inRange,
&.nextMonthDay.inRange,
&.today.inRange,
&.prevMonthDay.today.inRange,
&.nextMonthDay.today.inRange,
&:hover,
&.prevMonthDay:hover,
&.nextMonthDay:hover,
&:focus,
&.prevMonthDay:focus,
&.nextMonthDay:focus {
background: $dropdown-link-hover-bg;
border-color: $dropdown-link-hover-bg;
}
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time, .flatpickr-calendar.hasTime .flatpickr-time {
border-top: 1px solid $card-bg;
}
.numInputWrapper:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
background-color: transparent;
color: $dropdown-link-active-color;
}
.flatpickr-day.inRange {
box-shadow: -5px 0 0 $dropdown-link-hover-bg, 5px 0 0 $dropdown-link-hover-bg;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
color: $dropdown-link-disabled-color;
}

View File

@@ -0,0 +1,11 @@
//
// google-map.scss
//
.gmaps,
.gmaps-panaroma {
height: 300px;
background: $gray-100;
border-radius: 3px;
}

View File

@@ -0,0 +1,277 @@
//
// _gridjs.scss
//
.gridjs-container {
color: var(--#{$prefix}body-color);
padding: 0;
display: block;
}
.gridjs-wrapper {
box-shadow: none;
border: 1px solid var(--#{$prefix}border-color);
border-radius: 0px;
&::-webkit-scrollbar {
-webkit-appearance: none;
}
&::-webkit-scrollbar:vertical {
width: 5px;
padding: 5px;
}
&::-webkit-scrollbar:horizontal {
height: 5px;
}
&::-webkit-scrollbar-thumb {
background-color: rgba(var(--#{$prefix}dark-rgb), .075);
border-radius: 10px;
padding: 5px;
border: none;
}
&::-webkit-scrollbar-track {
border-radius: 10px;
background-color: transparent;
}
}
.gridjs-footer {
border: none !important;
padding: 12px 0 0;
}
.gridjs-table {
width: 100%;
table-layout: auto !important;
}
.gridjs-tbody,
td.gridjs-td {
background-color: $table-bg;
}
th.gridjs-th {
border: 1px solid var(--#{$prefix}border-color);
padding: $table-cell-padding-y * 0.5 $table-cell-padding-x;
}
td.gridjs-td {
border: 1px solid var(--#{$prefix}border-color);
padding: $table-cell-padding-y $table-cell-padding-x;
}
th {
&.gridjs-th {
border-top: 0;
color: var(--#{$prefix}body-color);
background-color: rgba(var(--#{$prefix}light-rgb), .75);
}
&.gridjs-th-sort {
&:focus,
&:hover {
background-color: rgba(var(--#{$prefix}light-rgb), .85);
}
}
}
.gridjs-head {
padding-top: 0;
}
.gridjs-footer {
box-shadow: none;
border: 1px solid var(--#{$prefix}border-color);
border-top: 0;
background-color: $table-bg;
}
.gridjs-summary {
color: $text-muted;
margin-top: 8px !important;
}
.gridjs-pagination {
.gridjs-pages button {
background-color: transparent;
color: var(--#{$prefix}link-color);
border: $border-width solid var(--#{$prefix}border-color);
border-right: none;
outline: none;
padding: $pagination-padding-y $pagination-padding-x;
user-select: none;
&:last-child {
border-right: 1px solid var(--#{$prefix}border-color);
}
&:disabled,
&:hover:disabled,
&[disabled] {
color: var(--#{$prefix}body-color);
background-color: $card-bg;
}
&:hover {
background-color: $card-bg;
color: var(--#{$prefix}link-hover-color);
}
&:focus {
box-shadow: none;
}
&:last-child,
&:first-child {
&:hover {
background-color: transparent;
}
}
&.gridjs-currentPage {
background-color: $component-active-bg;
color: $component-active-color;
border-color: $component-active-bg;
font-weight: $font-weight-medium;
}
}
}
.gridjs-search {
position: relative;
float: left;
&::before {
content: "\ebf7";
font-family: "boxicons";
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 10px;
font-size: 18px;
color: $text-muted;
}
}
input.gridjs-input {
border-color: $input-border-color;
background-color: $input-bg;
color: $input-color;
line-height: $input-line-height;
padding: $input-padding-y $input-padding-x $input-padding-y $input-padding-x * 2.5;
border-radius: $input-border-radius;
@include font-size($input-font-size);
&:focus {
box-shadow: none;
border-color: $input-focus-border-color;
background-color: $input-focus-bg;
}
&::placeholder {
color: $input-placeholder-color;
}
}
th.gridjs-th {
.gridjs-th-content {
float: none;
display: inline-block;
vertical-align: middle;
font-weight: $font-weight-semibold;
}
}
button.gridjs-sort {
float: none;
display: inline-block;
vertical-align: middle;
width: 10px;
height: 20px;
}
th.gridjs-th-sort .gridjs-th-content {
width: calc(100% - 10px);
}
button {
&.gridjs-sort-asc,
&.gridjs-sort-desc {
background-size: 7px;
}
}
// gridjs selection
.gridjs-tr-selected {
td {
background-color: $table-active-bg;
}
.gridjs-td .gridjs-checkbox[type=checkbox] {
background-color: $form-check-input-checked-bg-color;
border-color: $form-check-input-checked-border-color;
@if $enable-gradients {
background-image: escape-svg($form-check-input-checked-bg-image),
var(--#{$prefix}gradient);
}
@else {
background-image: escape-svg($form-check-input-checked-bg-image);
}
}
}
.gridjs-td {
.gridjs-checkbox {
width: $form-check-input-width;
height: $form-check-input-width;
vertical-align: top;
background-color: $form-check-input-bg;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
border: $form-check-input-border;
appearance: none;
// color-adjust: exact; // Keep themed appearance for print
@include transition($form-check-transition);
&[type="checkbox"] {
@include border-radius($form-check-input-border-radius);
}
}
}
.gridjs-border-none {
td.gridjs-td,
th.gridjs-th {
border-right-width: 0;
border-left-width: 0;
}
}
.gridjs-loading-bar {
background-color: $card-bg;
}
[data-bs-theme="dark"] {
button {
&.gridjs-sort-neutral,
&.gridjs-sort-asc,
&.gridjs-sort-desc {
filter: $btn-close-white-filter;
}
}
}

View File

@@ -0,0 +1,247 @@
//
// simplebar.scss
//
[data-simplebar] {
position: relative;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
align-content: flex-start;
align-items: flex-start;
}
.simplebar-wrapper {
overflow: hidden;
width: inherit;
height: inherit;
max-width: inherit;
max-height: inherit;
}
.simplebar-mask {
direction: inherit;
position: absolute;
overflow: hidden;
padding: 0;
margin: 0;
left: 0;
top: 0;
bottom: 0;
right: 0;
width: auto !important;
height: auto !important;
z-index: 0;
}
.simplebar-offset {
direction: inherit !important;
box-sizing: inherit !important;
resize: none !important;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 0;
margin: 0;
-webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
direction: inherit;
box-sizing: border-box !important;
position: relative;
display: block;
height: 100%;
/* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
width: auto;
visibility: visible;
overflow: auto;
/* Scroll on this element otherwise element can't have a padding applied properly */
max-width: 100%;
/* Not required for horizontal scroll to trigger */
max-height: 100%;
/* Needed for vertical scroll to trigger */
scrollbar-width: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
display: none;
}
.simplebar-content:before,
.simplebar-content:after {
content: ' ';
display: table;
}
.simplebar-placeholder {
max-height: 100%;
max-width: 100%;
width: 100%;
pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
box-sizing: inherit !important;
height: 100%;
width: 100%;
max-width: 1px;
position: relative;
float: left;
max-height: 1px;
overflow: hidden;
z-index: -1;
padding: 0;
margin: 0;
pointer-events: none;
flex-grow: inherit;
flex-shrink: 0;
flex-basis: 0;
}
.simplebar-height-auto-observer {
box-sizing: inherit;
display: block;
opacity: 0;
position: absolute;
top: 0;
left: 0;
height: 1000%;
width: 1000%;
min-height: 1px;
min-width: 1px;
overflow: hidden;
pointer-events: none;
z-index: -1;
}
.simplebar-track {
z-index: 1;
position: absolute;
right: 0;
bottom: 0;
pointer-events: none;
overflow: hidden;
}
[data-simplebar].simplebar-dragging .simplebar-content {
pointer-events: none;
user-select: none;
-webkit-user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
pointer-events: all;
}
.simplebar-scrollbar {
position: absolute;
right: 2px;
width: 5px;
min-height: 10px;
}
.simplebar-scrollbar:before {
position: absolute;
content: '';
background: #a2adb7;
border-radius: 7px;
left: 0;
right: 0;
opacity: 0;
transition: opacity 0.2s linear;
}
[data-bs-theme="dark"] {
.simplebar-scrollbar:before {
background: #4c5b69;
}
}
.simplebar-scrollbar.simplebar-visible:before {
/* When hovered, remove all transitions from drag handle */
opacity: 0.5;
transition: opacity 0s linear;
}
.simplebar-track.simplebar-vertical {
top: 0;
width: 11px;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
top: 2px;
bottom: 2px;
}
.simplebar-track.simplebar-horizontal {
left: 0;
height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
height: 100%;
left: 2px;
right: 2px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
right: auto;
left: 0;
top: 2px;
height: 7px;
min-height: 0;
min-width: 10px;
width: auto;
}
/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
right: auto;
left: 0;
}
.hs-dummy-scrollbar-size {
direction: rtl;
position: fixed;
opacity: 0;
visibility: hidden;
height: 500px;
width: 500px;
overflow-y: hidden;
overflow-x: scroll;
}
.simplebar-hide-scrollbar {
position: fixed;
left: 0;
visibility: hidden;
overflow-y: scroll;
scrollbar-width: none;
}
.custom-scroll {
height: 100%;
}
// Scroll Size
[data-simplebar-lg] {
.simplebar-scrollbar {
right: 1px;
width: 10px;
}
}
@each $color,
$value in $theme-colors {
[data-simplebar-#{$color}] {
.simplebar-scrollbar {
&:before {
background: $value;
}
}
}
}

View File

@@ -0,0 +1,144 @@
//
// vector-map.scss
//
svg {
touch-action: none;
}
.jvm-marker {
font-family: $font-family-base;
font-size: $font-size-sm;
font-weight: 400;
fill: var(--#{$prefix}body-color);
}
image,
text,
.jvm-zoomin,
.jvm-zoomout {
user-select: none;
}
.jvm-container {
touch-action: none;
position: relative;
overflow: hidden;
height: 100%;
width: 100%;
}
.jvm-tooltip {
border-radius: $tooltip-border-radius;
background-color: $tooltip-bg;
font-family: $font-family-sans-serif;
font-size: $tooltip-font-size;
box-shadow: none;
padding: $tooltip-padding-y $tooltip-padding-x;
white-space: nowrap;
position: absolute;
display: none;
color: $tooltip-color;
}
.jvm-zoom-btn {
border-radius: $btn-border-radius;
background-color: $secondary;
border-color: $black;
color: $white;
font-size: $font-size-base;
font-weight: $btn-font-weight;
padding: $btn-padding-y-sm $btn-padding-x-sm;
box-sizing: border-box;
position: absolute;
line-height: $btn-line-height;
cursor: pointer;
left: 0;
&.jvm-zoomout {
top: 55px;
}
&.jvm-zoomin {
top: 10px;
}
}
.jvm-series-container {
right: 15px;
position: absolute;
&.jvm-series-h {
bottom: 15px;
}
&.jvm-series-v {
top: 15px;
}
.jvm-legend {
background-color: #fff;
border: $border-width solid $border-color;
margin-left: .75rem;
border-radius: $border-radius;
border-color: $border-color;
padding: .6rem;
box-shadow: none;
float: left;
.jvm-legend-title {
line-height: 1;
border-bottom: $border-width solid $border-color;
padding-bottom: .5rem;
margin-bottom: .575rem;
text-align: left;
}
.jvm-legend-inner {
overflow: hidden;
.jvm-legend-tick {
overflow: hidden;
min-width: 40px;
&:not(:first-child) {
margin-top: .575rem;
}
.jvm-legend-tick-sample {
border-radius: 4px;
margin-right: .65rem;
height: 16px;
width: 16px;
float: left;
}
.jvm-legend-tick-text {
font-size: 12px;
text-align: center;
float: left;
}
}
}
}
}
.jvectormap-label {
border: none;
background: var(--#{$prefix}dark);
color: var(--#{$prefix}dark);
font-family: $font-family-sans-serif;
font-size: $font-size-base;
padding: 5px 8px;
}
.jvm-line[animation="true"] {
animation: jvm-line-animation 10s linear forwards infinite;
}
@keyframes jvm-line-animation {
from {
stroke-dashoffset: 250;
}
}

View File

@@ -0,0 +1,35 @@
//
// _footer.scss
//
.footer {
bottom: 0;
right: 0;
left: 0;
position: absolute;
display: flex;
align-items: center;
padding: 0 calc(#{$spacer} * 0.5);
color: $footer-color;
height: $footer-height;
border-top: $card-border-width solid $card-border-color;
}
.footer-text {
background: linear-gradient(to right, $primary 10%, $warning 50%, $success 60%);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2.5s linear infinite;
display: inline-block;
}
@keyframes textclip {
to {
background-position: 200% center;
}
}

View File

@@ -0,0 +1,130 @@
//
// _general.scss
//
.app-wrapper {
height: 100%;
margin: 0 auto;
position: relative;
}
// Main Content
.page-content {
position: relative;
transition: all 0.3s ease-in-out;
min-height: calc(100vh - $topbar-height);
padding: calc($spacer * 1) calc($spacer * 0.5) $footer-height calc($spacer * 0.5);
margin-left: $sidebar-width;
}
// Animated Star
$shooting-time: 3000ms;
.animated-stars {
position: relative;
width: 100%;
height: 100%;
transform: rotateZ(45deg);
}
.shooting-star {
position: absolute;
left: 50%;
top: 50%;
height: 2px;
background: linear-gradient(-45deg, rgba(95, 145, 255, 1), rgba(0, 0, 255, 0));
border-radius: 999px;
filter: drop-shadow(0 0 6px rgba(105, 155, 255, 1));
animation:
tail $shooting-time ease-in-out infinite,
shooting $shooting-time ease-in-out infinite;
&::before {
content: '';
position: absolute;
top: calc(50% - 1px);
right: 0;
height: 2px;
background: linear-gradient(-45deg, rgba(0, 0, 255, 0), rgba(95, 145, 255, 1), rgba(0, 0, 255, 0));
transform: translateX(50%) rotateZ(45deg);
border-radius: 100%;
animation: shining $shooting-time ease-in-out infinite;
}
&::after {
content: '';
position: absolute;
top: calc(50% - 1px);
right: 0;
height: 2px;
background: linear-gradient(-45deg, rgba(0, 0, 255, 0), rgba(95, 145, 255, 1), rgba(0, 0, 255, 0));
transform: translateX(50%) rotateZ(45deg);
border-radius: 100%;
animation: shining $shooting-time ease-in-out infinite;
transform: translateX(50%) rotateZ(-45deg);
}
@for $i from 1 through 20 {
&:nth-child(#{$i}) {
$delay: random(9999) + 0ms;
top: calc(50% - #{random(400) - 200px});
left: calc(50% - #{random(300) + 0px});
animation-delay: $delay;
// opacity: random(50) / 100 + 0.5;
&::before,
&::after {
animation-delay: $delay;
}
}
}
}
@keyframes tail {
0% {
width: 0;
}
30% {
width: 100px;
}
100% {
width: 0;
}
}
@keyframes shining {
0% {
width: 0;
}
50% {
width: 30px;
}
100% {
width: 0;
}
}
@keyframes shooting {
0% {
transform: translateX(0);
}
100% {
transform: translateX(300px);
}
}
@keyframes sky {
0% {
transform: rotate(45deg);
}
100% {
transform: rotate(45 + 360deg);
}
}

View File

@@ -0,0 +1,13 @@
//
// Page-title
//
.page-title-box {
padding-bottom: $spacer;
background-color: transparent;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: $spacer * 0.5;
}

View File

@@ -0,0 +1,582 @@
//
// _vertical.scss
//
// Logo
.logo-box {
position: sticky;
overflow: hidden;
text-align: center;
white-space: nowrap;
transition: all 0.3s ease-in-out;
line-height: $topbar-height;
padding: 0 calc($sidebar-width-sm * 0.5 - $logo-sm-height * 0.5);
.logo-sm {
display: none;
height: $logo-sm-height;
}
.logo-lg {
height: $logo-lg-height;
}
.logo-light {
display: none;
}
.logo-dark {
display: block;
}
}
// Main Nav
.app-sidebar {
top: 0;
bottom: 0;
z-index: 1010;
margin-left: 0;
position: fixed;
transition: all 0.3s ease-in-out;
width: $sidebar-width;
font-family: $font-family-secondary;
background: $sidebar-bg;
// background-image: url("../images/bg-pattern.svg") no-repeat;
min-width: $sidebar-width;
padding-bottom: $spacer;
border-right: $card-border-width solid $sidebar-border-color;
border-left: $card-border-width solid $sidebar-border-color;
.scrollbar {
height: calc(100% - $topbar-height);
}
.menu-arrow {
&::after {
right: calc($sidebar-item-padding-x * 1.5);
display: flex;
content: "\ea4a";
font-family: boxicons;
margin-left: auto;
position: absolute;
transition: transform 0.2s;
color: inherit;
font-size: calc($sidebar-item-font-size * 1.25);
opacity: 0.6;
}
&[aria-expanded="true"] {
&::after {
transform: rotate(-180deg);
}
&::before {
opacity: 1;
}
}
}
.menu-title {
cursor: default;
font-size: 11px;
letter-spacing: 0.05em;
text-transform: uppercase;
color: $sidebar-item-color;
opacity: .6;
font-weight: $font-weight-semibold;
padding: $sidebar-item-padding-y calc($sidebar-item-padding-x * 1.25);
transition: all 0.3s ease-in-out;
height: 36px;
}
.navbar-nav {
margin: 0 15px;
.nav-item {
padding: calc($sidebar-item-padding-y * 0.1) 0;
.nav-link {
display: flex;
gap: 12px;
line-height: 1;
font-weight: 400;
align-items: center;
white-space: nowrap;
transition: all 0.3s ease-in-out;
border-radius: 8px;
color: $sidebar-item-color;
font-size: $sidebar-item-font-size;
padding: $sidebar-item-padding-y $sidebar-item-padding-x;
margin: $sidebar-item-margin-y 0;
&.show,
&:active,
&.active,
&:hover,
&:focus {
color: $sidebar-item-hover-color;
}
&.active {
background-color: $sidebar-item-hover-bg;
font-weight: $font-weight-medium;
}
.nav-icon {
display: flex;
align-items: center;
justify-content: center;
font-size: $sidebar-item-icon-size;
}
.badge {
margin-left: auto;
}
}
}
.sub-navbar-nav {
flex-direction: column;
padding-left: $sidebar-item-padding-x;
.menu-arrow {
&::after {
right: 0;
}
}
.sub-nav-item {
padding: calc($sidebar-item-padding-y * 0.5) $sidebar-item-padding-x;
.sub-nav-link {
display: flex;
align-items: center;
position: relative;
white-space: nowrap;
transition: all 0.3s ease-in-out;
color: $sidebar-item-color;
font-size: calc($sidebar-item-font-size * 0.95);
padding: calc($sidebar-item-padding-y * 0.25) $sidebar-item-padding-x;
&.active {
font-weight: $font-weight-medium;
}
.badge {
margin-left: auto;
}
&.active,
&:active,
&:hover,
&:focus {
color: $sidebar-item-hover-color;
&::before {
background-color: $sidebar-item-hover-color;
opacity: 1;
}
}
}
}
.sub-navbar-nav {
padding-left: calc($sidebar-width-sm - $sidebar-item-padding-x * 5.25);
}
}
.disabled {
opacity: 0.5;
pointer-events: none;
cursor: default;
}
}
}
// Sidenav Condensed
html[data-sidebar-size="condensed"] {
.app-sidebar {
position: absolute;
width: $sidebar-width-sm;
min-width: $sidebar-width-sm;
.logo-box {
top: 0;
z-index: 1020 !important;
background: $sidebar-bg;
.logo-lg {
display: none;
}
.logo-sm {
display: inline-block;
}
}
.menu-title {
height: 0;
opacity: 0;
padding: 0;
}
.badge {
display: none;
}
.simplebar-mask,
.simplebar-content-wrapper {
overflow: visible !important;
}
.simplebar-scrollbar {
display: none !important;
}
.simplebar-offset {
bottom: 0 !important;
}
// Sidenav Menu
.navbar-nav {
padding: 10px;
margin: 0;
.nav-link {
justify-content: center;
.nav-text,
&.menu-arrow::after {
display: none;
}
.nav-icon {
font-size: 22px !important;
}
}
.collapse,
.collapsing {
display: none;
height: auto !important;
}
.sub-nav-item,
.nav-item {
position: relative;
white-space: nowrap;
&:hover {
>.collapse,
>.collapsing {
display: block;
left: 100%;
margin-top: -4px;
position: absolute;
height: inherit !important;
transition: none !important;
>.sub-navbar-nav {
padding-left: 0;
background: $dropdown-bg;
box-shadow: var(--#{$prefix}box-shadow);
width: calc($sidebar-width - $sidebar-width-sm);
border: $card-border-width solid $card-border-color;
>.sub-nav-item {
padding: 0;
>.sub-nav-link {
padding: calc($sidebar-item-padding-y * 0.75) $sidebar-item-padding-x;
z-index: 5;
>.nav-text {
display: block;
}
}
>.collapse,
>.collapsing {
top: 0;
}
}
.sub-nav-item {
.sub-nav-link {
color: $dropdown-color;
&[aria-expanded="true"],
&.active,
&.show,
&:focus,
&:hover {
color: var(--#{$prefix}primary);
}
}
.collapse,
.collapsing {
top: 0;
}
}
}
}
}
}
>.nav-item {
&:hover {
>.nav-link {
&::before {
content: "";
inset: 0px;
position: absolute;
width: $sidebar-width;
}
>.nav-text {
display: flex;
align-items: center;
position: absolute;
left: calc($sidebar-width-sm - 2px - 20px);
background: $dropdown-bg;
color: $dropdown-color;
line-height: $sidebar-item-icon-size;
width: calc($sidebar-width - $sidebar-width-sm);
padding: $sidebar-item-padding-y $sidebar-item-padding-x;
border: $card-border-width solid $card-border-color;
box-shadow: var(--#{$prefix}box-shadow);
font-weight: $font-weight-medium;
}
}
}
.nav-text,
.sub-navbar-nav {
margin-left: 10px;
.sub-navbar-nav {
margin-left: 0;
}
}
}
.sub-nav-item {
.menu-arrow {
&::after {
right: 10px;
transform: rotate(-90deg);
}
}
.nav-text {
margin-left: 0;
}
.badge {
display: block;
}
}
}
}
.app-topbar {
padding-left: $sidebar-width-sm;
}
.page-content {
margin-left: $sidebar-width-sm;
min-height: 1300px;
}
}
// Sidebar sm hover Toggle Menu Button
.button-sm-hover {
border: 0;
top: 17px;
z-index: 1;
right: 10px;
display: none;
text-align: end;
position: absolute;
border-radius: 50%;
background: transparent;
transition: all 0.2s ease-in-out;
color: $sidebar-item-color;
padding: 0;
.button-sm-hover-icon {
width: 35px;
height: 35px;
display: flex;
font-size: 22px;
border-radius: 50%;
align-items: center;
justify-content: center;
}
&.show,
&.active,
&:active,
&:hover,
&:focus {
color: $sidebar-item-hover-color;
background-color: $sidebar-item-hover-bg;
}
}
// Small Hover
html[data-sidebar-size="sm-hover"] {
.app-topbar {
padding-left: $sidebar-width-sm;
}
.page-content {
margin-left: $sidebar-width-sm;
position: relative;
}
.button-toggle-menu {
display: none;
}
.app-sidebar:not(:hover) {
width: $sidebar-width-sm;
min-width: $sidebar-width-sm;
.logo-box {
.logo-lg {
display: none;
}
.logo-sm {
display: inline-block;
}
}
.nav-item {
.nav-link {
justify-content: center;
.nav-text,
.badge {
display: none;
}
&.menu-arrow {
&::after {
display: none;
}
}
}
.collapse,
.collapsing {
display: none;
}
}
.menu-title {
transition: all 0.3s ease-in-out;
height: 0;
opacity: 0;
padding: 0;
}
.simplebar-track.simplebar-vertical {
visibility: hidden !important;
}
}
.app-sidebar {
width: $sidebar-width;
min-width: $sidebar-width;
.logo-box {
text-align: left;
}
&:hover {
.button-sm-hover {
display: block;
.button-sm-hover-icon {
transform: rotateY(180deg);
transition: all 0.3s ease-in-out;
}
}
}
.simplebar-track.simplebar-horizontal {
visibility: hidden !important;
}
}
}
// Small Hover Active
html[data-sidebar-size="sm-hover-active"] {
.button-toggle-menu {
display: none;
}
.app-sidebar {
.logo-box {
text-align: left;
}
.button-sm-hover {
display: block;
.button-sm-hover-icon {
transform-style: preserve-3d;
transition: all 0.3s ease-in-out;
}
}
}
}
// SideNav Hidden (Mobile View)
html[data-sidebar-size="hidden"] {
.app-sidebar {
margin-left: calc($sidebar-width * -1);
}
.page-content {
margin-left: 0;
}
&.sidebar-enable {
.app-sidebar {
margin-left: 0;
z-index: 1055;
}
}
}
// Sidenav Dark and Brand
html[data-bs-theme="dark"],
html[data-sidebar-color="dark"],
html[data-sidebar-color="brand"] {
.app-sidebar {
.logo-box {
.logo-light {
display: block;
}
.logo-dark {
display: none;
}
}
}
}

View File

@@ -0,0 +1,159 @@
//
// topbar.scss
//
.app-topbar {
top: 0;
z-index: 1005;
position: sticky;
transition: all 0.3s ease-in-out;
height: $topbar-height;
background-color: $topbar-bg;
padding-left: $sidebar-width;
border-bottom: $card-border-width solid $card-border-color;
.navbar-header {
display: flex;
margin: 0 auto;
align-items: center;
justify-content: space-between;
padding: 0 10px;
}
// Search
.app-search {
.form-control {
border: none;
padding-left: 40px;
padding-right: 15px;
background-color: $topbar-search-bg;
box-shadow: none;
height: 38px;
border-radius: 20px;
}
.search-widget-icon {
position: absolute;
z-index: 10;
font-size: 18px;
left: 11px;
top: 50%;
color: $gray-500;
transform: translateY(-50%);
cursor: pointer;
}
.search-widget-icon-close {
right: 7px;
left: auto !important;
}
}
.topbar-item {
display: flex;
align-items: center;
justify-content: center;
height: $topbar-height;
.topbar-button {
border: none;
border-radius: 50%;
background-color: $topbar-search-bg;
transition: all 0.3s ease-in-out;
color: $topbar-item-color;
padding: $btn-padding-y $btn-padding-y;
position: relative;
&.show,
&.active,
&:active,
&:hover {
color: $primary;
}
}
}
.topbar-badge {
right: -7px;
top: 7px !important;
}
}
// fullscreen exit icon
[data-toggle="fullscreen"] {
.fullscreen {
display: block;
}
.quit-fullscreen {
display: none;
}
}
.fullscreen-enable {
.fullscreen {
display: none;
}
.quit-fullscreen {
display: block;
}
}
// Dark Mode Icon
.app-topbar {
#light-dark-mode {
.light-mode {
display: block;
}
.dark-mode {
display: none;
}
}
}
[data-bs-theme="dark"] {
.app-topbar {
#light-dark-mode {
.light-mode {
display: none;
}
.dark-mode {
display: block;
}
}
}
}
html[data-sidebar-size="hidden"] {
.app-topbar {
padding: 0 $spacer * 0.5;
}
}
// @include media-breakpoint-down(md) {
@media (max-width: 375px) {
.app-topbar {
padding: 0 0.5 * $spacer !important;
}
}
@media (max-width: 600px) {
.app-topbar {
.dropdown {
position: static;
.dropdown-menu {
width: 100%;
}
}
}
}

61
resources/scss/style.scss Executable file
View File

@@ -0,0 +1,61 @@
//
// app.scss
//
// Core files
@import "./node_modules/bootstrap/scss/functions";
@import "./node_modules/bootstrap/scss/variables";
@import "config/variables";
@import "config/variables-dark";
@import "config/theme-mode";
@import "./node_modules/bootstrap/scss/bootstrap";
// Structure
@import "structure/general";
@import "structure/topbar";
@import "structure/sidebar";
@import "structure/footer";
@import "structure/page-title";
// Bootstrap
@import "components/accordion";
@import "components/alerts";
@import "components/avatar";
@import "components/backgrounds";
@import "components/badge";
@import "components/breadcrumb";
@import "components/buttons";
@import "components/card";
@import "components/dropdown";
@import "components/forms";
@import "components/helper";
@import "components/list-group";
@import "components/modal";
@import "components/nav";
@import "components/pagination";
@import "components/popover";
@import "components/print";
@import "components/progress";
@import "components/reboot";
@import "components/switch";
@import "components/tables";
@import "components/type";
@import "components/tooltip";
@import "components/widgets";
// Plugin
@import "plugins/simplebar";
@import "plugins/dropzone";
@import "plugins/editors";
@import "plugins/gridjs";
@import "plugins/apexcharts";
@import "plugins/google-map";
@import "plugins/vector-map";
@import "plugins/flatpicker";
// Pages
@import "pages/icon-demo";
@import "pages/authentication";