first init
This commit is contained in:
204
resources/scss/plugins/_apexcharts.scss
Executable file
204
resources/scss/plugins/_apexcharts.scss
Executable 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);
|
||||
}
|
||||
}
|
||||
23
resources/scss/plugins/_dropzone.scss
Executable file
23
resources/scss/plugins/_dropzone.scss
Executable 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
95
resources/scss/plugins/_editors.scss
Executable file
95
resources/scss/plugins/_editors.scss
Executable 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;
|
||||
}
|
||||
}
|
||||
149
resources/scss/plugins/_flatpicker.scss
Executable file
149
resources/scss/plugins/_flatpicker.scss
Executable 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;
|
||||
}
|
||||
11
resources/scss/plugins/_google-map.scss
Executable file
11
resources/scss/plugins/_google-map.scss
Executable file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// google-map.scss
|
||||
//
|
||||
|
||||
|
||||
.gmaps,
|
||||
.gmaps-panaroma {
|
||||
height: 300px;
|
||||
background: $gray-100;
|
||||
border-radius: 3px;
|
||||
}
|
||||
277
resources/scss/plugins/_gridjs.scss
Executable file
277
resources/scss/plugins/_gridjs.scss
Executable 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
247
resources/scss/plugins/_simplebar.scss
Executable file
247
resources/scss/plugins/_simplebar.scss
Executable 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
144
resources/scss/plugins/_vector-map.scss
Executable file
144
resources/scss/plugins/_vector-map.scss
Executable 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user