Release 4.0.0-rc4: Updated dependencies and refined mobile image fix
- Updated 8 npm packages to latest versions including TypeScript, Astro, and linting tools - Refined mobile image loading solution by removing JavaScript runtime fix in favor of HTML-level path generation - All images now use relative paths generated at build time for optimal compatibility 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
148
dist/css/adminlte.css
vendored
148
dist/css/adminlte.css
vendored
@@ -1,6 +1,6 @@
|
||||
@charset "UTF-8";
|
||||
/*!
|
||||
* AdminLTE v4.0.0-beta3
|
||||
* AdminLTE v4.0.0-rc3
|
||||
* Author: Colorlib
|
||||
* Website: AdminLTE.io <https://adminlte.io>
|
||||
* License: Open source - MIT <https://opensource.org/licenses/MIT>
|
||||
@@ -273,8 +273,10 @@ p {
|
||||
}
|
||||
|
||||
abbr[title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
@@ -2115,6 +2117,8 @@ progress {
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: var(--bs-body-color);
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: var(--bs-body-bg);
|
||||
background-clip: padding-box;
|
||||
@@ -2150,6 +2154,10 @@ progress {
|
||||
display: block;
|
||||
padding: 0;
|
||||
}
|
||||
.form-control::-moz-placeholder {
|
||||
color: var(--bs-secondary-color);
|
||||
opacity: 1;
|
||||
}
|
||||
.form-control::placeholder {
|
||||
color: var(--bs-secondary-color);
|
||||
opacity: 1;
|
||||
@@ -2266,6 +2274,8 @@ textarea.form-control-lg {
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: var(--bs-body-color);
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: var(--bs-body-bg);
|
||||
background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
|
||||
@@ -2348,6 +2358,8 @@ textarea.form-control-lg {
|
||||
height: 1em;
|
||||
margin-top: 0.25em;
|
||||
vertical-align: top;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: var(--bs-form-check-bg);
|
||||
background-image: var(--bs-form-check-bg-image);
|
||||
@@ -2355,6 +2367,7 @@ textarea.form-control-lg {
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
border: var(--bs-border-width) solid var(--bs-border-color);
|
||||
-webkit-print-color-adjust: exact;
|
||||
print-color-adjust: exact;
|
||||
}
|
||||
.form-check-input[type=checkbox] {
|
||||
@@ -2453,6 +2466,8 @@ textarea.form-control-lg {
|
||||
width: 100%;
|
||||
height: 1.5rem;
|
||||
padding: 0;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -2472,15 +2487,18 @@ textarea.form-control-lg {
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
margin-top: -0.25rem;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
background-color: #0d6efd;
|
||||
border: 0;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
|
||||
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||||
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.form-range::-webkit-slider-thumb {
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
@@ -2500,15 +2518,18 @@ textarea.form-control-lg {
|
||||
.form-range::-moz-range-thumb {
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: #0d6efd;
|
||||
border: 0;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
|
||||
-moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||||
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.form-range::-moz-range-thumb {
|
||||
-moz-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
@@ -2572,10 +2593,17 @@ textarea.form-control-lg {
|
||||
.form-floating > .form-control-plaintext {
|
||||
padding: 1rem 0.75rem;
|
||||
}
|
||||
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
.form-floating > .form-control::placeholder,
|
||||
.form-floating > .form-control-plaintext::placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
.form-floating > .form-control:not(:-moz-placeholder), .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
|
||||
padding-top: 1.625rem;
|
||||
padding-bottom: 0.625rem;
|
||||
}
|
||||
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
|
||||
.form-floating > .form-control-plaintext:focus,
|
||||
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
|
||||
@@ -2592,6 +2620,9 @@ textarea.form-control-lg {
|
||||
padding-bottom: 0.625rem;
|
||||
padding-left: 0.75rem;
|
||||
}
|
||||
.form-floating > .form-control:not(:-moz-placeholder) ~ label {
|
||||
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
||||
}
|
||||
.form-floating > .form-control:focus ~ label,
|
||||
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
||||
.form-floating > .form-control-plaintext ~ label,
|
||||
@@ -2601,6 +2632,15 @@ textarea.form-control-lg {
|
||||
.form-floating > .form-control:-webkit-autofill ~ label {
|
||||
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
||||
}
|
||||
.form-floating > textarea:not(:-moz-placeholder) ~ label::after {
|
||||
position: absolute;
|
||||
inset: 1rem 0.375rem;
|
||||
z-index: -1;
|
||||
height: 1.5em;
|
||||
content: "";
|
||||
background-color: var(--bs-body-bg);
|
||||
border-radius: var(--bs-border-radius);
|
||||
}
|
||||
.form-floating > textarea:focus ~ label::after,
|
||||
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
|
||||
position: absolute;
|
||||
@@ -2920,6 +2960,8 @@ textarea.form-control-lg {
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
|
||||
border-radius: var(--bs-btn-border-radius);
|
||||
@@ -5319,6 +5361,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.btn-close:disabled, .btn-close.disabled {
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
opacity: var(--bs-btn-close-disabled-opacity);
|
||||
}
|
||||
@@ -5374,6 +5418,7 @@ textarea.form-control-lg {
|
||||
--bs-toast-zindex: 1090;
|
||||
position: absolute;
|
||||
z-index: var(--bs-toast-zindex);
|
||||
width: -moz-max-content;
|
||||
width: max-content;
|
||||
max-width: 100%;
|
||||
pointer-events: none;
|
||||
@@ -6766,13 +6811,16 @@ textarea.form-control-lg {
|
||||
}
|
||||
}
|
||||
.placeholder-wave {
|
||||
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
||||
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
||||
-webkit-mask-size: 200% 100%;
|
||||
mask-size: 200% 100%;
|
||||
animation: placeholder-wave 2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes placeholder-wave {
|
||||
100% {
|
||||
-webkit-mask-position: -200% 0%;
|
||||
mask-position: -200% 0%;
|
||||
}
|
||||
}
|
||||
@@ -7150,22 +7198,27 @@ textarea.form-control-lg {
|
||||
}
|
||||
|
||||
.object-fit-contain {
|
||||
-o-object-fit: contain !important;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
|
||||
.object-fit-cover {
|
||||
-o-object-fit: cover !important;
|
||||
object-fit: cover !important;
|
||||
}
|
||||
|
||||
.object-fit-fill {
|
||||
-o-object-fit: fill !important;
|
||||
object-fit: fill !important;
|
||||
}
|
||||
|
||||
.object-fit-scale {
|
||||
-o-object-fit: scale-down !important;
|
||||
object-fit: scale-down !important;
|
||||
}
|
||||
|
||||
.object-fit-none {
|
||||
-o-object-fit: none !important;
|
||||
object-fit: none !important;
|
||||
}
|
||||
|
||||
@@ -8396,26 +8449,32 @@ textarea.form-control-lg {
|
||||
}
|
||||
|
||||
.column-gap-0 {
|
||||
-moz-column-gap: 0 !important;
|
||||
column-gap: 0 !important;
|
||||
}
|
||||
|
||||
.column-gap-1 {
|
||||
-moz-column-gap: 0.25rem !important;
|
||||
column-gap: 0.25rem !important;
|
||||
}
|
||||
|
||||
.column-gap-2 {
|
||||
-moz-column-gap: 0.5rem !important;
|
||||
column-gap: 0.5rem !important;
|
||||
}
|
||||
|
||||
.column-gap-3 {
|
||||
-moz-column-gap: 1rem !important;
|
||||
column-gap: 1rem !important;
|
||||
}
|
||||
|
||||
.column-gap-4 {
|
||||
-moz-column-gap: 1.5rem !important;
|
||||
column-gap: 1.5rem !important;
|
||||
}
|
||||
|
||||
.column-gap-5 {
|
||||
-moz-column-gap: 3rem !important;
|
||||
column-gap: 3rem !important;
|
||||
}
|
||||
|
||||
@@ -8980,14 +9039,20 @@ textarea.form-control-lg {
|
||||
}
|
||||
|
||||
.user-select-all {
|
||||
-webkit-user-select: all !important;
|
||||
-moz-user-select: all !important;
|
||||
user-select: all !important;
|
||||
}
|
||||
|
||||
.user-select-auto {
|
||||
-webkit-user-select: auto !important;
|
||||
-moz-user-select: auto !important;
|
||||
user-select: auto !important;
|
||||
}
|
||||
|
||||
.user-select-none {
|
||||
-webkit-user-select: none !important;
|
||||
-moz-user-select: none !important;
|
||||
user-select: none !important;
|
||||
}
|
||||
|
||||
@@ -9254,18 +9319,23 @@ textarea.form-control-lg {
|
||||
float: none !important;
|
||||
}
|
||||
.object-fit-sm-contain {
|
||||
-o-object-fit: contain !important;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
.object-fit-sm-cover {
|
||||
-o-object-fit: cover !important;
|
||||
object-fit: cover !important;
|
||||
}
|
||||
.object-fit-sm-fill {
|
||||
-o-object-fit: fill !important;
|
||||
object-fit: fill !important;
|
||||
}
|
||||
.object-fit-sm-scale {
|
||||
-o-object-fit: scale-down !important;
|
||||
object-fit: scale-down !important;
|
||||
}
|
||||
.object-fit-sm-none {
|
||||
-o-object-fit: none !important;
|
||||
object-fit: none !important;
|
||||
}
|
||||
.d-sm-inline {
|
||||
@@ -9881,21 +9951,27 @@ textarea.form-control-lg {
|
||||
row-gap: 3rem !important;
|
||||
}
|
||||
.column-gap-sm-0 {
|
||||
-moz-column-gap: 0 !important;
|
||||
column-gap: 0 !important;
|
||||
}
|
||||
.column-gap-sm-1 {
|
||||
-moz-column-gap: 0.25rem !important;
|
||||
column-gap: 0.25rem !important;
|
||||
}
|
||||
.column-gap-sm-2 {
|
||||
-moz-column-gap: 0.5rem !important;
|
||||
column-gap: 0.5rem !important;
|
||||
}
|
||||
.column-gap-sm-3 {
|
||||
-moz-column-gap: 1rem !important;
|
||||
column-gap: 1rem !important;
|
||||
}
|
||||
.column-gap-sm-4 {
|
||||
-moz-column-gap: 1.5rem !important;
|
||||
column-gap: 1.5rem !important;
|
||||
}
|
||||
.column-gap-sm-5 {
|
||||
-moz-column-gap: 3rem !important;
|
||||
column-gap: 3rem !important;
|
||||
}
|
||||
.text-sm-start {
|
||||
@@ -9919,18 +9995,23 @@ textarea.form-control-lg {
|
||||
float: none !important;
|
||||
}
|
||||
.object-fit-md-contain {
|
||||
-o-object-fit: contain !important;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
.object-fit-md-cover {
|
||||
-o-object-fit: cover !important;
|
||||
object-fit: cover !important;
|
||||
}
|
||||
.object-fit-md-fill {
|
||||
-o-object-fit: fill !important;
|
||||
object-fit: fill !important;
|
||||
}
|
||||
.object-fit-md-scale {
|
||||
-o-object-fit: scale-down !important;
|
||||
object-fit: scale-down !important;
|
||||
}
|
||||
.object-fit-md-none {
|
||||
-o-object-fit: none !important;
|
||||
object-fit: none !important;
|
||||
}
|
||||
.d-md-inline {
|
||||
@@ -10546,21 +10627,27 @@ textarea.form-control-lg {
|
||||
row-gap: 3rem !important;
|
||||
}
|
||||
.column-gap-md-0 {
|
||||
-moz-column-gap: 0 !important;
|
||||
column-gap: 0 !important;
|
||||
}
|
||||
.column-gap-md-1 {
|
||||
-moz-column-gap: 0.25rem !important;
|
||||
column-gap: 0.25rem !important;
|
||||
}
|
||||
.column-gap-md-2 {
|
||||
-moz-column-gap: 0.5rem !important;
|
||||
column-gap: 0.5rem !important;
|
||||
}
|
||||
.column-gap-md-3 {
|
||||
-moz-column-gap: 1rem !important;
|
||||
column-gap: 1rem !important;
|
||||
}
|
||||
.column-gap-md-4 {
|
||||
-moz-column-gap: 1.5rem !important;
|
||||
column-gap: 1.5rem !important;
|
||||
}
|
||||
.column-gap-md-5 {
|
||||
-moz-column-gap: 3rem !important;
|
||||
column-gap: 3rem !important;
|
||||
}
|
||||
.text-md-start {
|
||||
@@ -10584,18 +10671,23 @@ textarea.form-control-lg {
|
||||
float: none !important;
|
||||
}
|
||||
.object-fit-lg-contain {
|
||||
-o-object-fit: contain !important;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
.object-fit-lg-cover {
|
||||
-o-object-fit: cover !important;
|
||||
object-fit: cover !important;
|
||||
}
|
||||
.object-fit-lg-fill {
|
||||
-o-object-fit: fill !important;
|
||||
object-fit: fill !important;
|
||||
}
|
||||
.object-fit-lg-scale {
|
||||
-o-object-fit: scale-down !important;
|
||||
object-fit: scale-down !important;
|
||||
}
|
||||
.object-fit-lg-none {
|
||||
-o-object-fit: none !important;
|
||||
object-fit: none !important;
|
||||
}
|
||||
.d-lg-inline {
|
||||
@@ -11211,21 +11303,27 @@ textarea.form-control-lg {
|
||||
row-gap: 3rem !important;
|
||||
}
|
||||
.column-gap-lg-0 {
|
||||
-moz-column-gap: 0 !important;
|
||||
column-gap: 0 !important;
|
||||
}
|
||||
.column-gap-lg-1 {
|
||||
-moz-column-gap: 0.25rem !important;
|
||||
column-gap: 0.25rem !important;
|
||||
}
|
||||
.column-gap-lg-2 {
|
||||
-moz-column-gap: 0.5rem !important;
|
||||
column-gap: 0.5rem !important;
|
||||
}
|
||||
.column-gap-lg-3 {
|
||||
-moz-column-gap: 1rem !important;
|
||||
column-gap: 1rem !important;
|
||||
}
|
||||
.column-gap-lg-4 {
|
||||
-moz-column-gap: 1.5rem !important;
|
||||
column-gap: 1.5rem !important;
|
||||
}
|
||||
.column-gap-lg-5 {
|
||||
-moz-column-gap: 3rem !important;
|
||||
column-gap: 3rem !important;
|
||||
}
|
||||
.text-lg-start {
|
||||
@@ -11249,18 +11347,23 @@ textarea.form-control-lg {
|
||||
float: none !important;
|
||||
}
|
||||
.object-fit-xl-contain {
|
||||
-o-object-fit: contain !important;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
.object-fit-xl-cover {
|
||||
-o-object-fit: cover !important;
|
||||
object-fit: cover !important;
|
||||
}
|
||||
.object-fit-xl-fill {
|
||||
-o-object-fit: fill !important;
|
||||
object-fit: fill !important;
|
||||
}
|
||||
.object-fit-xl-scale {
|
||||
-o-object-fit: scale-down !important;
|
||||
object-fit: scale-down !important;
|
||||
}
|
||||
.object-fit-xl-none {
|
||||
-o-object-fit: none !important;
|
||||
object-fit: none !important;
|
||||
}
|
||||
.d-xl-inline {
|
||||
@@ -11876,21 +11979,27 @@ textarea.form-control-lg {
|
||||
row-gap: 3rem !important;
|
||||
}
|
||||
.column-gap-xl-0 {
|
||||
-moz-column-gap: 0 !important;
|
||||
column-gap: 0 !important;
|
||||
}
|
||||
.column-gap-xl-1 {
|
||||
-moz-column-gap: 0.25rem !important;
|
||||
column-gap: 0.25rem !important;
|
||||
}
|
||||
.column-gap-xl-2 {
|
||||
-moz-column-gap: 0.5rem !important;
|
||||
column-gap: 0.5rem !important;
|
||||
}
|
||||
.column-gap-xl-3 {
|
||||
-moz-column-gap: 1rem !important;
|
||||
column-gap: 1rem !important;
|
||||
}
|
||||
.column-gap-xl-4 {
|
||||
-moz-column-gap: 1.5rem !important;
|
||||
column-gap: 1.5rem !important;
|
||||
}
|
||||
.column-gap-xl-5 {
|
||||
-moz-column-gap: 3rem !important;
|
||||
column-gap: 3rem !important;
|
||||
}
|
||||
.text-xl-start {
|
||||
@@ -11914,18 +12023,23 @@ textarea.form-control-lg {
|
||||
float: none !important;
|
||||
}
|
||||
.object-fit-xxl-contain {
|
||||
-o-object-fit: contain !important;
|
||||
object-fit: contain !important;
|
||||
}
|
||||
.object-fit-xxl-cover {
|
||||
-o-object-fit: cover !important;
|
||||
object-fit: cover !important;
|
||||
}
|
||||
.object-fit-xxl-fill {
|
||||
-o-object-fit: fill !important;
|
||||
object-fit: fill !important;
|
||||
}
|
||||
.object-fit-xxl-scale {
|
||||
-o-object-fit: scale-down !important;
|
||||
object-fit: scale-down !important;
|
||||
}
|
||||
.object-fit-xxl-none {
|
||||
-o-object-fit: none !important;
|
||||
object-fit: none !important;
|
||||
}
|
||||
.d-xxl-inline {
|
||||
@@ -12541,21 +12655,27 @@ textarea.form-control-lg {
|
||||
row-gap: 3rem !important;
|
||||
}
|
||||
.column-gap-xxl-0 {
|
||||
-moz-column-gap: 0 !important;
|
||||
column-gap: 0 !important;
|
||||
}
|
||||
.column-gap-xxl-1 {
|
||||
-moz-column-gap: 0.25rem !important;
|
||||
column-gap: 0.25rem !important;
|
||||
}
|
||||
.column-gap-xxl-2 {
|
||||
-moz-column-gap: 0.5rem !important;
|
||||
column-gap: 0.5rem !important;
|
||||
}
|
||||
.column-gap-xxl-3 {
|
||||
-moz-column-gap: 1rem !important;
|
||||
column-gap: 1rem !important;
|
||||
}
|
||||
.column-gap-xxl-4 {
|
||||
-moz-column-gap: 1.5rem !important;
|
||||
column-gap: 1.5rem !important;
|
||||
}
|
||||
.column-gap-xxl-5 {
|
||||
-moz-column-gap: 3rem !important;
|
||||
column-gap: 3rem !important;
|
||||
}
|
||||
.text-xxl-start {
|
||||
@@ -13183,6 +13303,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-sm.layout-fixed .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-sm.sidebar-open .nav-link > .nav-badge,
|
||||
.sidebar-expand-sm.sidebar-open .nav-link > p > .nav-badge {
|
||||
@@ -13213,6 +13335,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-sm .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-sm.sidebar-open .app-sidebar {
|
||||
margin-left: 0;
|
||||
@@ -13251,6 +13375,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-md.layout-fixed .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-md.sidebar-open .nav-link > .nav-badge,
|
||||
.sidebar-expand-md.sidebar-open .nav-link > p > .nav-badge {
|
||||
@@ -13281,6 +13407,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-md .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-md.sidebar-open .app-sidebar {
|
||||
margin-left: 0;
|
||||
@@ -13319,6 +13447,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-lg.layout-fixed .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-lg.sidebar-open .nav-link > .nav-badge,
|
||||
.sidebar-expand-lg.sidebar-open .nav-link > p > .nav-badge {
|
||||
@@ -13349,6 +13479,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-lg .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-lg.sidebar-open .app-sidebar {
|
||||
margin-left: 0;
|
||||
@@ -13387,6 +13519,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-xl.layout-fixed .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-xl.sidebar-open .nav-link > .nav-badge,
|
||||
.sidebar-expand-xl.sidebar-open .nav-link > p > .nav-badge {
|
||||
@@ -13417,6 +13551,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-xl .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-xl.sidebar-open .app-sidebar {
|
||||
margin-left: 0;
|
||||
@@ -13455,6 +13591,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-xxl.layout-fixed .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-xxl.sidebar-open .nav-link > .nav-badge,
|
||||
.sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-badge {
|
||||
@@ -13485,6 +13623,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand-xxl .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand-xxl.sidebar-open .app-sidebar {
|
||||
margin-left: 0;
|
||||
@@ -13522,6 +13662,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand.layout-fixed .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand.sidebar-open .nav-link > .nav-badge,
|
||||
.sidebar-expand.sidebar-open .nav-link > p > .nav-badge {
|
||||
@@ -13550,6 +13692,8 @@ textarea.form-control-lg {
|
||||
}
|
||||
.sidebar-expand .app-sidebar .sidebar-wrapper {
|
||||
height: calc(100vh - (calc(3.5rem + 1px)));
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.sidebar-expand.sidebar-open .app-sidebar {
|
||||
margin-left: 0;
|
||||
@@ -15446,4 +15590,4 @@ fieldset legend {
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=adminlte.css.map */
|
||||
/*# sourceMappingURL=adminlte.css.map */
|
||||
Reference in New Issue
Block a user