File: //home/workzeni/agency-erp-05.workzenix.com/vendor/livewire/flux/dist/flux.css
@source "../../flux-pro/stubs";
@source "../stubs";
@theme {
--color-accent: var(--color-zinc-800);
--color-accent-content: var(--color-zinc-800);
--color-accent-foreground: var(--color-white);
}
@layer theme {
.dark {
--color-accent: var(--color-white);
--color-accent-content: var(--color-white);
--color-accent-foreground: var(--color-zinc-800);
}
}
*:has(>[data-flux-main]) {
display: grid;
grid-area: body;
grid-template-rows: auto 1fr auto;
grid-template-columns: min-content minmax(0, 1fr) min-content;
grid-template-areas:
"header header header"
"sidebar main aside"
"sidebar footer aside";
}
*:has(>[data-flux-sidebar]+[data-flux-header]) {
grid-template-areas:
"sidebar header header"
"sidebar main aside"
"sidebar footer aside";
}
/*
Transition dialogs with fade a slight scale effect...
*/
[data-flux-modal] > dialog, [data-flux-modal] > dialog::backdrop {
opacity: 0;
transition: all 0.075s allow-discrete;
}
[data-flux-modal] > dialog { transform: scale(0.95); }
[data-flux-modal] > dialog[data-flux-flyout] { transform: scale(1) var(--fx-flyout-translate, translateX(50px)); }
[data-flux-modal] > dialog[open], [data-flux-modal] > dialog[open]::backdrop {
opacity: 1;
transform: translateX(0) scale(1);
transition: all 0.15s allow-discrete;
}
@starting-style {
[data-flux-modal] > dialog[open], [data-flux-modal] > dialog[open]::backdrop {
opacity: 0;
}
[data-flux-modal] > dialog[open] {
transform: scale(0.95);
}
[data-flux-modal] > dialog[open][data-flux-flyout] { transform: scale(1) var(--fx-flyout-translate, translateX(50px)); }
}
[data-flux-modal] > dialog::backdrop {
background-color: rgba(0, 0, 0, 0.25);
}
/**
Native select styles...
*/
select[data-flux-select-native] {
background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23d4d4d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23d4d4d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
background-position: right .5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-inline-end: 2.5rem;
print-color-adjust: exact;
-webkit-print-color-adjust: exact;
}
[dir="rtl"] select[data-flux-select-native] {
background-position: left .5rem center;
}
select[data-flux-select-native]:hover:not(:disabled) {
background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%2327272a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%2327272a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.dark select[data-flux-select-native] {
background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23A1A1AA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23A1A1AA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.dark select[data-flux-select-native]:hover:not(:disabled) {
background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 9L12 5L16 9' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 15L12 19L8 15' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
/**
Toast styles...
*/
ui-toast {
margin: 1.5rem;
max-width: 24rem;
overflow: visible;
background-color: transparent;
&[position*="top"] {
margin-bottom: auto;
}
&[position*="bottom"] {
margin-top: auto;
}
&[position*="left"],
&[position*="start"] {
margin-inline-end: auto;
}
&[position*="center"] {
margin-left: auto;
margin-right: auto;
}
&[position*="right"],
&[position*="end"] {
margin-inline-start: auto;
}
[data-flux-toast-dialog] {
opacity: 0;
transform: translate(0);
transition: opacity 0.35s allow-discrete, transform 0.35s allow-discrete, height 0.35s allow-discrete;
&.showing {
opacity: 1;
transform: translate(0);
transition: opacity 0.2s allow-discrete, transform 0.2s allow-discrete, height 0.2s allow-discrete;
}
}
@starting-style {
& {
[data-flux-toast-dialog] {
opacity: 0;
transform: translate(0);
}
&[position*="top"] > [data-flux-toast-dialog] {
transform: translateY(-0.5rem);
}
&[position*="top"][position*="left"] > [data-flux-toast-dialog] {
transform: translateX(-0.5rem);
}
&[position*="top"][position*="right"] > [data-flux-toast-dialog] {
transform: translateX(0.5rem);
}
[dir="rtl"] &[position*="top"][position*="left"] > [data-flux-toast-dialog] {
transform: translateX(0.5rem);
}
[dir="rtl"] &[position*="top"][position*="right"] > [data-flux-toast-dialog] {
transform: translateX(-0.5rem);
}
&[position*="bottom"] > [data-flux-toast-dialog] {
transform: translateY(0.5rem);
}
}
}
}
ui-toast-group {
margin: 1.5rem;
width: 24rem;
overflow: visible;
background-color: transparent;
display: flex;
&[position*="top"] {
margin-bottom: auto;
}
&[position*="bottom"] {
margin-top: auto;
}
&[position*="left"],
&[position*="start"] {
margin-inline-end: auto;
justify-content: flex-start;
}
&[position*="center"] {
margin-left: auto;
margin-right: auto;
justify-content: center;
}
&[position*="right"],
&[position*="end"] {
margin-inline-start: auto;
justify-content: flex-end;
}
[data-flux-toast-dialog] {
position: absolute;
transform: translate(0);
transition: opacity 0.35s allow-discrete, transform 0.35s allow-discrete, height 0.35s allow-discrete;
[position*="top"] & {
top: 0;
padding-bottom: 0.75rem;
}
[position*="bottom"] & {
bottom: 0;
padding-top: 0.75rem;
}
& > * {
transition: opacity 0.35s allow-discrete, transform 0.35s allow-discrete, height 0.35s allow-discrete;
}
}
}