Testing Alpha
This commit is contained in:
@ -1,6 +1,9 @@
|
||||
@import 'tailwindcss/base';
|
||||
@import 'tailwindcss/components';
|
||||
@import 'tailwindcss/utilities';
|
||||
$ti-font-path: '/public/build/fonts/tabler';
|
||||
@import "@tabler/icons-webfont/dist/tabler-icons.scss";
|
||||
|
||||
|
||||
[x-cloak] {
|
||||
display: none !important;
|
||||
@ -14,6 +17,14 @@
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.user-profile-header img.user-profile-img{
|
||||
max-width: 110px;
|
||||
max-height: 110px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.user-nav .user-name {
|
||||
letter-spacing: 0.03rem;
|
||||
font-weight: 600;
|
||||
@ -37,6 +48,28 @@
|
||||
text-transform: inherit !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item.active {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
.dark-style .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item.active {
|
||||
background-color: #282b3f;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.image-wrapper-16x16 {
|
||||
width: 28px;
|
||||
aspect-ratio: 1/1; /* Proporción 1:1 para que sea cuadrado */
|
||||
@ -415,5 +448,3 @@ html.dark-style .fixed-table-container {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
43
resources/scss/pages/quick-access-card.scss
Normal file
43
resources/scss/pages/quick-access-card.scss
Normal file
@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Quick Access Cards
|
||||
*/
|
||||
.quick-access-card,
|
||||
.quick-access-category {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
transition: opacity 0.4s ease, transform 0.4s ease;
|
||||
}
|
||||
.quick-access-category {
|
||||
max-height: 2000px;
|
||||
transition: max-height 0.6s ease, opacity 0.4s ease;
|
||||
}
|
||||
.quick-access-card {
|
||||
transition: opacity 0.4s ease, transform 0.3s ease;
|
||||
}
|
||||
.quick-showing {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
.quick-hidden {
|
||||
opacity: 0;
|
||||
transform: scale(0.95);
|
||||
pointer-events: none;
|
||||
max-height: 0 !important;
|
||||
margin: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
padding-bottom: 0 !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
.quick-access-group {
|
||||
transition: opacity 0.3s ease-in-out;
|
||||
}
|
||||
.quick-access-card .card {
|
||||
transition: all 0.4s ease;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.quick-access-card .card:hover {
|
||||
transform: translateY(-1px) scale(1.02);
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
Reference in New Issue
Block a user