Fixed #5200 - Contrast and Secondary Variants for Badge/Tag/Message/Toast
parent
feb24d1555
commit
58300487f0
|
@ -3,7 +3,7 @@ const InlineMessageProps = [
|
|||
name: 'severity',
|
||||
type: 'string',
|
||||
default: 'error',
|
||||
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
|
||||
description: 'Severity level of the message. Valid severities are "success", "info", "warn", "error", "secondary" and "contrast".'
|
||||
},
|
||||
{
|
||||
name: 'icon',
|
||||
|
|
|
@ -3,7 +3,7 @@ const MessageProps = [
|
|||
name: 'severity',
|
||||
type: 'string',
|
||||
default: 'info',
|
||||
description: 'Severity level of the message. Valid severities are "success", "info", "warn" and "error".'
|
||||
description: 'Severity level of the message. Valid severities are "success", "info", "warn", "error", "secondary" and "contrast".'
|
||||
},
|
||||
{
|
||||
name: 'closable',
|
||||
|
|
|
@ -94,7 +94,7 @@ export interface InlineMessageProps {
|
|||
* Severity level of the message.
|
||||
* @defaultValue info
|
||||
*/
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | string | undefined;
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | 'secondary' | 'contrast' | string | undefined;
|
||||
/**
|
||||
* Display a custom icon for the message.
|
||||
* @deprecated since v3.27.0. Use 'icon' slot.
|
||||
|
|
|
@ -118,7 +118,7 @@ export interface MessageProps {
|
|||
* Severity level of the message.
|
||||
* @defaultValue info
|
||||
*/
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | string | undefined;
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | 'secondary' | 'contrast' | string | undefined;
|
||||
/**
|
||||
* Whether the message can be closed manually using the close icon.
|
||||
* @defaultValue true
|
||||
|
|
|
@ -131,7 +131,7 @@ export interface ToastMessageOptions {
|
|||
* Severity level of the message.
|
||||
* @defaultValue info
|
||||
*/
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | undefined;
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | 'secondary' | 'contrast' | undefined;
|
||||
/**
|
||||
* Summary content of the message.
|
||||
*/
|
||||
|
|
|
@ -101,7 +101,9 @@ const classes = {
|
|||
'p-toast-message-info': props.message.severity === 'info' || props.message.severity === undefined,
|
||||
'p-toast-message-warn': props.message.severity === 'warn',
|
||||
'p-toast-message-error': props.message.severity === 'error',
|
||||
'p-toast-message-success': props.message.severity === 'success'
|
||||
'p-toast-message-success': props.message.severity === 'success',
|
||||
'p-toast-message-secondary': props.message.severity === 'secondary',
|
||||
'p-toast-message-contrast': props.message.severity === 'contrast'
|
||||
}
|
||||
],
|
||||
content: 'p-toast-message-content',
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
<InlineMessage severity="info">Info Message</InlineMessage>
|
||||
<InlineMessage severity="warn">Warning Message</InlineMessage>
|
||||
<InlineMessage severity="error">Error Message</InlineMessage>
|
||||
<InlineMessage severity="secondary">Secondary Message</InlineMessage>
|
||||
<InlineMessage severity="contrast">Contrast Message</InlineMessage>
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
@ -21,6 +23,8 @@ export default {
|
|||
<InlineMessage severity="info">Info Message</InlineMessage>
|
||||
<InlineMessage severity="warn">Warning Message</InlineMessage>
|
||||
<InlineMessage severity="error">Error Message</InlineMessage>
|
||||
<InlineMessage severity="secondary">Secondary Message</InlineMessage>
|
||||
<InlineMessage severity="contrast">Contrast Message</InlineMessage>
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
|
@ -29,6 +33,8 @@ export default {
|
|||
<InlineMessage severity="info">Info Message</InlineMessage>
|
||||
<InlineMessage severity="warn">Warning Message</InlineMessage>
|
||||
<InlineMessage severity="error">Error Message</InlineMessage>
|
||||
<InlineMessage severity="secondary">Secondary Message</InlineMessage>
|
||||
<InlineMessage severity="contrast">Contrast Message</InlineMessage>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -42,6 +48,8 @@ export default {
|
|||
<InlineMessage severity="info">Info Message</InlineMessage>
|
||||
<InlineMessage severity="warn">Warning Message</InlineMessage>
|
||||
<InlineMessage severity="error">Error Message</InlineMessage>
|
||||
<InlineMessage severity="secondary">Secondary Message</InlineMessage>
|
||||
<InlineMessage severity="contrast">Contrast Message</InlineMessage>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
<Message severity="info">Info Message</Message>
|
||||
<Message severity="warn">Warning Message</Message>
|
||||
<Message severity="error">Error Message</Message>
|
||||
<Message severity="secondary">Secondary Message</Message>
|
||||
<Message severity="contrast">Contrast Message</Message>
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
@ -21,6 +23,8 @@ export default {
|
|||
<Message severity="info">Info Message</Message>
|
||||
<Message severity="warn">Warning Message</Message>
|
||||
<Message severity="error">Error Message</Message>
|
||||
<Message severity="secondary">Secondary Message</Message>
|
||||
<Message severity="contrast">Contrast Message</Message>
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
|
@ -29,6 +33,8 @@ export default {
|
|||
<Message severity="info">Info Message</Message>
|
||||
<Message severity="warn">Warning Message</Message>
|
||||
<Message severity="error">Error Message</Message>
|
||||
<Message severity="secondary">Secondary Message</Message>
|
||||
<Message severity="contrast">Contrast Message</Message>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -42,6 +48,8 @@ export default {
|
|||
<Message severity="info">Info Message</Message>
|
||||
<Message severity="warn">Warning Message</Message>
|
||||
<Message severity="error">Error Message</Message>
|
||||
<Message severity="secondary">Secondary Message</Message>
|
||||
<Message severity="contrast">Contrast Message</Message>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
<Button label="Info" severity="info" @click="showInfo" />
|
||||
<Button label="Warn" severity="warning" @click="showWarn" />
|
||||
<Button label="Error" severity="danger" @click="showError" />
|
||||
<Button label="Secondary" severity="secondary" @click="showSecondary" />
|
||||
<Button label="Contrast" severity="contrast" @click="showContrast" />
|
||||
</div>
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
|
@ -24,6 +26,8 @@ export default {
|
|||
<Button label="Info" severity="info" @click="showInfo" />
|
||||
<Button label="Warn" severity="warning" @click="showWarn" />
|
||||
<Button label="Error" severity="danger" @click="showError" />
|
||||
<Button label="Secondary" severity="secondary" @click="showSecondary" />
|
||||
<Button label="Contrast" severity="contrast" @click="showContrast" />
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
|
@ -34,6 +38,8 @@ export default {
|
|||
<Button label="Info" severity="info" @click="showInfo" />
|
||||
<Button label="Warn" severity="warning" @click="showWarn" />
|
||||
<Button label="Error" severity="danger" @click="showError" />
|
||||
<Button label="Secondary" severity="secondary" @click="showSecondary" />
|
||||
<Button label="Contrast" severity="contrast" @click="showContrast" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -52,6 +58,12 @@ export default {
|
|||
},
|
||||
showError() {
|
||||
this.$toast.add({ severity: 'error', summary: 'Error Message', detail: 'Message Content', life: 3000 });
|
||||
},
|
||||
showSecondary() {
|
||||
this.$toast.add({ severity: 'secondary', summary: 'Secondary Message', detail: 'Message Content', life: 3000 });
|
||||
},
|
||||
showContrast() {
|
||||
this.$toast.add({ severity: 'contrast', summary: 'Contrast Message', detail: 'Message Content', life: 3000 });
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -66,6 +78,8 @@ export default {
|
|||
<Button label="Info" severity="info" @click="showInfo" />
|
||||
<Button label="Warn" severity="warning" @click="showWarn" />
|
||||
<Button label="Error" severity="danger" @click="showError" />
|
||||
<Button label="Secondary" severity="secondary" @click="showSecondary" />
|
||||
<Button label="Contrast" severity="contrast" @click="showContrast" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -89,6 +103,14 @@ const showWarn = () => {
|
|||
const showError = () => {
|
||||
toast.add({ severity: 'error', summary: 'Error Message', detail: 'Message Content', life: 3000 });
|
||||
};
|
||||
|
||||
const showSecondary = () => {
|
||||
toast.add({ severity: 'secondary', summary: 'Secondary Message', detail: 'Message Content', life: 3000 });
|
||||
};
|
||||
|
||||
const showContrast = () => {
|
||||
toast.add({ severity: 'contrast', summary: 'Contrast Message', detail: 'Message Content', life: 3000 });
|
||||
};
|
||||
<\/script>
|
||||
`
|
||||
}
|
||||
|
@ -106,6 +128,12 @@ const showError = () => {
|
|||
},
|
||||
showError() {
|
||||
this.$toast.add({ severity: 'error', summary: 'Error Message', detail: 'Message Content', life: 3000 });
|
||||
},
|
||||
showSecondary() {
|
||||
this.$toast.add({ severity: 'secondary', summary: 'Secondary Message', detail: 'Message Content', life: 3000 });
|
||||
},
|
||||
showContrast() {
|
||||
this.$toast.add({ severity: 'contrast', summary: 'Contrast Message', detail: 'Message Content', life: 3000 });
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -271,74 +271,6 @@
|
|||
<div class="w-3"></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="py-4 border-bottom-1 surface-border">
|
||||
<div class="flex align-items-center gap-2 mb-3">
|
||||
<img src="https://primefaces.org/cdn/primevue/images/themes/bootstrap4-light-blue.svg" alt="Bootstrap" class="border-circle" style="width: 1.5rem" />
|
||||
<span class="font-medium">Bootstrap</span>
|
||||
</div>
|
||||
<div class="flex align-items-center justify-content-between gap-3">
|
||||
<button
|
||||
:class="[
|
||||
'bg-transparent border-1 cursor-pointer p-2 w-3 flex align-items-center justify-content-center transition-all transition-duration-200',
|
||||
{ 'border-primary': isThemeActive('bootstrap4', 'blue'), 'hover:border-500 surface-border': !isThemeActive('bootstrap4', 'blue') }
|
||||
]"
|
||||
style="border-radius: 30px"
|
||||
@click="changeTheme('bootstrap4', 'blue')"
|
||||
>
|
||||
<span class="block h-1rem w-full" style="border-radius: 30px; background: linear-gradient(180deg, #027bff 0%, rgba(2, 123, 255, 0.5) 100%)"></span>
|
||||
</button>
|
||||
<button
|
||||
:class="[
|
||||
'bg-transparent border-1 cursor-pointer p-2 w-3 flex align-items-center justify-content-center transition-all transition-duration-200',
|
||||
{ 'border-primary': isThemeActive('bootstrap4', 'purple'), 'hover:border-500 surface-border': !isThemeActive('bootstrap4', 'purple') }
|
||||
]"
|
||||
style="border-radius: 30px"
|
||||
@click="changeTheme('bootstrap4', 'purple')"
|
||||
>
|
||||
<span class="block h-1rem w-full" style="border-radius: 30px; background: linear-gradient(180deg, #893cae 0%, rgba(137, 60, 174, 0.5) 100%)"></span>
|
||||
</button>
|
||||
<div class="w-3"></div>
|
||||
<div class="w-3"></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="py-4 border-bottom-1 surface-border">
|
||||
<div class="flex gap-3">
|
||||
<div class="w-3">
|
||||
<div class="flex align-items-center gap-2 mb-3">
|
||||
<img src="https://primefaces.org/cdn/primevue/images/themes/soho-light.png" alt="Soho" class="border-circle" style="width: 1.5rem" />
|
||||
<span class="font-medium">Soho</span>
|
||||
</div>
|
||||
<button
|
||||
:class="[
|
||||
'bg-transparent border-1 cursor-pointer p-2 w-full flex align-items-center justify-content-center transition-all transition-duration-200',
|
||||
{ 'border-primary': isThemeActive('soho'), 'hover:border-500 surface-border': !isThemeActive('soho') }
|
||||
]"
|
||||
style="border-radius: 30px"
|
||||
@click="changeTheme('soho')"
|
||||
>
|
||||
<span class="block h-1rem w-full" style="border-radius: 30px; background: linear-gradient(180deg, #664beb 0%, rgba(102, 75, 235, 0.5) 100%)"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="w-3">
|
||||
<div class="flex align-items-center gap-2 mb-3">
|
||||
<img src="https://primefaces.org/cdn/primevue/images/themes/viva-light.svg" alt="Viva" class="border-circle" style="width: 1.5rem" />
|
||||
<span class="font-medium">Viva</span>
|
||||
</div>
|
||||
<button
|
||||
:class="[
|
||||
'bg-transparent border-1 cursor-pointer p-2 w-full flex align-items-center justify-content-center transition-all transition-duration-200',
|
||||
{ 'border-primary': isThemeActive('viva'), 'hover:border-500 surface-border': !isThemeActive('viva') }
|
||||
]"
|
||||
style="border-radius: 30px"
|
||||
@click="changeTheme('viva')"
|
||||
>
|
||||
<span class="block h-1rem w-full" style="border-radius: 30px; background: linear-gradient(180deg, #4a67c9 0%, rgba(74, 103, 201, 0.5) 100%)"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="w-3"></div>
|
||||
<div class="w-3"></div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</Sidebar>
|
||||
</template>
|
||||
|
@ -471,7 +403,7 @@ export default {
|
|||
return this.$appState.ripple;
|
||||
},
|
||||
inputStyle() {
|
||||
return this.$primevue.config.inputStyle;
|
||||
return this.$primevue.config.inputStyle || 'outlined';
|
||||
},
|
||||
containerClass() {
|
||||
return [
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#fbbf24;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #fbbf24;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(251, 191, 36, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#60a5fa;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #60a5fa;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(96, 165, 250, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#22d3ee;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #22d3ee;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(34, 211, 238, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#34d399;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #34d399;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(52, 211, 153, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#818cf8;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #818cf8;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(129, 140, 248, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#a3e635;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #a3e635;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(163, 230, 53, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#fafafa;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #fafafa;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(250, 250, 250, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#f472b6;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #f472b6;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(244, 114, 182, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#a78bfa;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #a78bfa;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(167, 139, 250, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#ffffff;
|
||||
--text-color-secondary:#a1a1aa;
|
||||
--primary-color:#2dd4bf;
|
||||
--primary-color-text:#020617;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #ffffff;
|
||||
--text-color-secondary: #a1a1aa;
|
||||
--primary-color: #2dd4bf;
|
||||
--primary-color-text: #020617;
|
||||
--surface-0: #18181b;
|
||||
--surface-50: #27272a;
|
||||
--surface-100: #3f3f46;
|
||||
|
@ -30,15 +30,15 @@
|
|||
--gray-700: #3f3f46;
|
||||
--gray-800: #27272a;
|
||||
--gray-900: #18181b;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#09090b;
|
||||
--surface-section:#18181b;
|
||||
--surface-card:#18181b;
|
||||
--surface-overlay:#18181b;
|
||||
--surface-border:#27272a;
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #09090b;
|
||||
--surface-section: #18181b;
|
||||
--surface-card: #18181b;
|
||||
--surface-overlay: #18181b;
|
||||
--surface-border: #27272a;
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(45, 212, 191, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #27272a;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 2.5rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #27272a;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #27272a;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #27272a;
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #52525b;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5179,37 +5179,55 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,49 +5267,73 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #09090b;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,41 +5396,61 @@
|
|||
background: rgba(59, 130, 246, 0.16);
|
||||
border: solid rgba(29, 78, 216, 0.36);
|
||||
border-width: 1px;
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border: solid rgba(21, 128, 61, 0.36);
|
||||
border-width: 1px;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
border: solid rgba(161, 98, 7, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border: solid rgba(185, 28, 28, 0.36);
|
||||
border-width: 1px;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #27272a;
|
||||
border: solid #3f3f46;
|
||||
border-width: 1px;
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #d4d4d8;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #f4f4f5;
|
||||
border-width: 1px;
|
||||
color: #09090b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #09090b;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5763,7 +5825,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5789,16 +5851,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #EF4444;
|
||||
stroke: #ef4444;
|
||||
}
|
||||
40% {
|
||||
stroke: #3B82F6;
|
||||
stroke: #3b82f6;
|
||||
}
|
||||
66% {
|
||||
stroke: #22C55E;
|
||||
stroke: #22c55e;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #EAB308;
|
||||
stroke: #eab308;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -6304,6 +6366,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6356,7 +6426,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6366,7 +6436,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6376,7 +6446,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
|
@ -6386,12 +6456,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #d4d4d8;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #09090b;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6746,7 +6836,7 @@
|
|||
color: #71717a;
|
||||
}
|
||||
.p-selectbutton.p-invalid {
|
||||
box-shadow: 0 0 0 1px #FCA5A5;
|
||||
box-shadow: 0 0 0 1px #fca5a5;
|
||||
border-radius: 6px;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
|
@ -6879,19 +6969,19 @@
|
|||
}
|
||||
.p-tag.p-tag-success {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background: rgba(59, 130, 246, 0.16);
|
||||
color: #3B82F6;
|
||||
color: #3b82f6;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background: rgba(234, 179, 8, 0.16);
|
||||
color: #EAB308;
|
||||
color: #eab308;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-terminal {
|
||||
|
@ -6934,7 +7024,6 @@
|
|||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #ffffff;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6948,8 +7037,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #3B82F6;
|
||||
outline-color: #3b82f6;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6957,8 +7049,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6966,8 +7061,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #EAB308;
|
||||
outline-color: #eab308;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.075);
|
||||
|
@ -6975,12 +7073,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #3f3f46;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #f4f4f5;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#f59e0b;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #f59e0b;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #fffbeb;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#3B82F6;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #3B82F6;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #EFF6FF;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#06b6d4;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #06b6d4;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #ecfeff;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#10b981;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #10b981;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #ecfdf5;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#6366F1;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #6366F1;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #EEF2FF;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#84cc16;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #84cc16;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #f7fee7;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#020617;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #020617;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #020617;
|
||||
|
@ -2170,51 +2170,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2268,100 +2268,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5187,39 +5187,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5257,51 +5275,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5362,43 +5404,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5600,7 +5662,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5612,7 +5674,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5773,7 +5835,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5799,16 +5861,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5850,7 +5912,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5862,7 +5924,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5944,7 +6006,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5953,10 +6015,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6313,6 +6375,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6365,7 +6435,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6375,7 +6445,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6385,7 +6455,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6395,12 +6465,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6943,7 +7033,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6957,8 +7046,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6966,8 +7058,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6975,8 +7070,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6984,12 +7082,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#ec4899;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #ec4899;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #fdf2f8;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#8B5CF6;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #8B5CF6;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #F5F3FF;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--text-color:#334155;
|
||||
--text-color-secondary:#64748b;
|
||||
--primary-color:#14b8a6;
|
||||
--primary-color-text:#ffffff;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--text-color: #334155;
|
||||
--text-color-secondary: #64748b;
|
||||
--primary-color: #14b8a6;
|
||||
--primary-color-text: #ffffff;
|
||||
--surface-0: #ffffff;
|
||||
--surface-50: #f8fafc;
|
||||
--surface-100: #f1f5f9;
|
||||
|
@ -32,15 +32,15 @@
|
|||
--gray-800: #1e293b;
|
||||
--gray-900: #0f172a;
|
||||
--gray-950: #020617;
|
||||
--content-padding:1.125rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#f8fafc;
|
||||
--surface-section:#ffffff;
|
||||
--surface-card:#ffffff;
|
||||
--surface-overlay:#ffffff;
|
||||
--surface-border:#e2e8f0;
|
||||
--surface-hover:#f1f5f9;
|
||||
--content-padding: 1.125rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #f8fafc;
|
||||
--surface-section: #ffffff;
|
||||
--surface-card: #ffffff;
|
||||
--surface-overlay: #ffffff;
|
||||
--surface-border: #e2e8f0;
|
||||
--surface-hover: #f1f5f9;
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: #f0fdfa;
|
||||
|
@ -2162,51 +2162,51 @@
|
|||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #ffffff;
|
||||
background: #22C55E;
|
||||
border: 1px solid #22C55E;
|
||||
background: #22c55e;
|
||||
border: 1px solid #22c55e;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
background: #16A34A;
|
||||
background: #16a34a;
|
||||
color: #ffffff;
|
||||
border-color: #16A34A;
|
||||
border-color: #16a34a;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):focus, .p-buttonset.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):active, .p-buttonset.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active {
|
||||
background: #15803D;
|
||||
background: #15803d;
|
||||
color: #ffffff;
|
||||
border-color: #15803D;
|
||||
border-color: #15803d;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(34, 197, 94, 0.04);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(34, 197, 94, 0.16);
|
||||
border-color: transparent;
|
||||
color: #22C55E;
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
|
@ -2260,100 +2260,100 @@
|
|||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #ffffff;
|
||||
background: #A855F7;
|
||||
border: 1px solid #A855F7;
|
||||
background: #a855f7;
|
||||
border: 1px solid #a855f7;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
background: #9333EA;
|
||||
background: #9333ea;
|
||||
color: #ffffff;
|
||||
border-color: #9333EA;
|
||||
border-color: #9333ea;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):focus, .p-buttonset.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):active, .p-buttonset.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active {
|
||||
background: #7E22CE;
|
||||
background: #7e22ce;
|
||||
color: #ffffff;
|
||||
border-color: #7E22CE;
|
||||
border-color: #7e22ce;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(168, 85, 247, 0.04);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(168, 85, 247, 0.16);
|
||||
border-color: transparent;
|
||||
color: #A855F7;
|
||||
color: #a855f7;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #ffffff;
|
||||
background: #EF4444;
|
||||
border: 1px solid #EF4444;
|
||||
background: #ef4444;
|
||||
border: 1px solid #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
background: #DC2626;
|
||||
background: #dc2626;
|
||||
color: #ffffff;
|
||||
border-color: #DC2626;
|
||||
border-color: #dc2626;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):focus, .p-buttonset.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):active, .p-buttonset.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active {
|
||||
background: #B91C1C;
|
||||
background: #b91c1c;
|
||||
color: #ffffff;
|
||||
border-color: #B91C1C;
|
||||
border-color: #b91c1c;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border: 1px solid;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 68, 68, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 68, 68, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5179,39 +5179,57 @@
|
|||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn .p-inline-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5249,51 +5267,75 @@
|
|||
}
|
||||
.p-message.p-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-icon {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5354,43 +5396,63 @@
|
|||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: rgba(239, 246, 255, 0.95);
|
||||
border: solid #BFDBFE;
|
||||
border: solid #bfdbfe;
|
||||
border-width: 1px;
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #2563EB;
|
||||
color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: rgba(240, 253, 244, 0.95);
|
||||
border: solid #BBF7D0;
|
||||
border: solid #bbf7d0;
|
||||
border-width: 1px;
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #16A34A;
|
||||
color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: rgba(254, 252, 232, 0.95);
|
||||
border: solid #FDE68A;
|
||||
border: solid #fde68a;
|
||||
border-width: 1px;
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
color: #CA8A04;
|
||||
color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: rgba(254, 242, 242, 0.95);
|
||||
border: solid #FECACA;
|
||||
border: solid #fecaca;
|
||||
border-width: 1px;
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #DC2626;
|
||||
color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #f1f5f9;
|
||||
border: solid #e2e8f0;
|
||||
border-width: 1px;
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #475569;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #020617;
|
||||
border: solid #64748b;
|
||||
border-width: 1px;
|
||||
color: #f8fafc;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5592,7 +5654,7 @@
|
|||
color: #475569;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
|
@ -5604,7 +5666,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5765,7 +5827,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5791,16 +5853,16 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #DC2626;
|
||||
stroke: #dc2626;
|
||||
}
|
||||
40% {
|
||||
stroke: #2563EB;
|
||||
stroke: #2563eb;
|
||||
}
|
||||
66% {
|
||||
stroke: #16A34A;
|
||||
stroke: #16a34a;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #CA8A04;
|
||||
stroke: #ca8a04;
|
||||
}
|
||||
}
|
||||
.p-scrolltop {
|
||||
|
@ -5842,7 +5904,7 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #22C55E;
|
||||
background-color: #22c55e;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
|
@ -5854,7 +5916,7 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF4444;
|
||||
background-color: #ef4444;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
@ -5936,7 +5998,7 @@
|
|||
}
|
||||
|
||||
.p-button.p-button-success:enabled:focus-visible {
|
||||
outline-color: #22C55E;
|
||||
outline-color: #22c55e;
|
||||
}
|
||||
.p-button.p-button-info:enabled:focus-visible {
|
||||
outline-color: #0ea5e9;
|
||||
|
@ -5945,10 +6007,10 @@
|
|||
outline-color: #f97316;
|
||||
}
|
||||
.p-button.p-button-help:enabled:focus-visible {
|
||||
outline-color: #A855F7;
|
||||
outline-color: #a855f7;
|
||||
}
|
||||
.p-button.p-button-danger:enabled:focus-visible {
|
||||
outline-color: #EF4444;
|
||||
outline-color: #ef4444;
|
||||
}
|
||||
.p-button.p-button-contrast:enabled:focus-visible {
|
||||
outline-color: #020617;
|
||||
|
@ -6305,6 +6367,14 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
|
||||
.p-inputgroup-addon {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
@ -6357,7 +6427,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:focus-visible {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6367,7 +6437,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:focus-visible {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6377,7 +6447,7 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:focus-visible {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-message.p-message-warn .p-message-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6387,12 +6457,32 @@
|
|||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:focus-visible {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.p-message.p-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:focus-visible {
|
||||
outline-color: #475569;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-message.p-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:focus-visible {
|
||||
outline-color: #f8fafc;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-multiselect-panel .p-multiselect-header {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
|
@ -6935,7 +7025,6 @@
|
|||
backdrop-filter: blur(1.5px);
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
|
||||
color: #334155;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.p-toast .p-toast-message .p-toast-icon-close {
|
||||
|
@ -6949,8 +7038,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
box-shadow: 0px 4px 8px 0px rgba(59, 130, 246, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
outline-color: #2563EB;
|
||||
outline-color: #2563eb;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close:hover {
|
||||
background: #dbeafe;
|
||||
|
@ -6958,8 +7050,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
box-shadow: 0px 4px 8px 0px rgba(34, 197, 94, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
outline-color: #16A34A;
|
||||
outline-color: #16a34a;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close:hover {
|
||||
background: #dcfce7;
|
||||
|
@ -6967,8 +7062,11 @@
|
|||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
box-shadow: 0px 4px 8px 0px rgba(234, 179, 8, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
|
||||
outline-color: #CA8A04;
|
||||
outline-color: #ca8a04;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close:hover {
|
||||
background: #fef9c3;
|
||||
|
@ -6976,12 +7074,33 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
box-shadow: 0px 4px 8px 0px rgba(239, 68, 68, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-detail {
|
||||
color: #334155;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
outline-color: #DC2626;
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close:hover {
|
||||
background: #fee2e2;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
box-shadow: 0px 4px 8px 0px rgba(74, 85, 103, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close:hover {
|
||||
background: #e2e8f0;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
box-shadow: 0px 4px 8px 0px rgba(2, 6, 23, 0.04);
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
outline-color: #dc2626;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close:hover {
|
||||
background: #1e293b;
|
||||
}
|
||||
|
||||
.p-togglebutton .p-button .p-button-label,
|
||||
.p-togglebutton .p-button .p-button-icon {
|
||||
|
|
|
@ -5598,14 +5598,6 @@
|
|||
background-color: #f19ea6;
|
||||
color: #151515;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #20262e;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5848,14 +5840,6 @@
|
|||
background-color: #f19ea6;
|
||||
color: #151515;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #20262e;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
|
@ -5598,14 +5598,6 @@
|
|||
background-color: #f19ea6;
|
||||
color: #151515;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #20262e;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5848,14 +5840,6 @@
|
|||
background-color: #f19ea6;
|
||||
color: #151515;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #20262e;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
|
@ -5598,14 +5598,6 @@
|
|||
background-color: #dc3545;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #212529;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5848,14 +5840,6 @@
|
|||
background-color: #dc3545;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #212529;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
|
@ -5598,14 +5598,6 @@
|
|||
background-color: #dc3545;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #212529;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5848,14 +5840,6 @@
|
|||
background-color: #dc3545;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #6c757d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #212529;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#fbbf24;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #fbbf24;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(251, 191, 36, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #fbbf24;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #fbbf24;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #fbbf24;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #fbbf24;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #fbbf24;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #fbbf24;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#60a5fa;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #60a5fa;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(96, 165, 250, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #60a5fa;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #60a5fa;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #60a5fa;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #60a5fa;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #60a5fa;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #60a5fa;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#22d3ee;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #22d3ee;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(34, 211, 238, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #22d3ee;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #22d3ee;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #22d3ee;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #22d3ee;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #22d3ee;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #22d3ee;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#34d399;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #34d399;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(52, 211, 153, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #34d399;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #34d399;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #34d399;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #34d399;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #34d399;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #34d399;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#818cf8;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #818cf8;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(129, 140, 248, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #818cf8;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #818cf8;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #818cf8;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #818cf8;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #818cf8;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #818cf8;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#f472b6;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #f472b6;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(244, 114, 182, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #f472b6;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #f472b6;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #f472b6;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #f472b6;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #f472b6;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #f472b6;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#a78bfa;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #a78bfa;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(167, 139, 250, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #a78bfa;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #a78bfa;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #a78bfa;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #a78bfa;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #a78bfa;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #a78bfa;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
font-family: "Inter var", sans-serif;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
font-variation-settings: normal;
|
||||
--font-family:"Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02","cv03","cv04","cv11";
|
||||
--surface-a:#1f2937;
|
||||
--surface-b:#111827;
|
||||
--surface-c:rgba(255, 255, 255, 0.03);
|
||||
--surface-d:#424b57;
|
||||
--surface-e:#1f2937;
|
||||
--surface-f:#1f2937;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#2dd4bf;
|
||||
--primary-color-text:#030712;
|
||||
--font-family: "Inter var", sans-serif;
|
||||
--font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
--surface-a: #1f2937;
|
||||
--surface-b: #111827;
|
||||
--surface-c: rgba(255, 255, 255, 0.03);
|
||||
--surface-d: #424b57;
|
||||
--surface-e: #1f2937;
|
||||
--surface-f: #1f2937;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #2dd4bf;
|
||||
--primary-color-text: #030712;
|
||||
--surface-0: #111827;
|
||||
--surface-50: #1f2937;
|
||||
--surface-100: #374151;
|
||||
|
@ -35,15 +35,15 @@
|
|||
--gray-700: #374151;
|
||||
--gray-800: #1f2937;
|
||||
--gray-900: #111827;
|
||||
--content-padding:1.25rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:6px;
|
||||
--surface-ground:#111827;
|
||||
--surface-section:#111827;
|
||||
--surface-card:#1f2937;
|
||||
--surface-overlay:#1f2937;
|
||||
--surface-border:rgba(255,255,255,.1);
|
||||
--surface-hover:rgba(255,255,255,.03);
|
||||
--content-padding: 1.25rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 6px;
|
||||
--surface-ground: #111827;
|
||||
--surface-section: #111827;
|
||||
--surface-card: #1f2937;
|
||||
--surface-overlay: #1f2937;
|
||||
--surface-border: rgba(255, 255, 255, 0.1);
|
||||
--surface-hover: rgba(255, 255, 255, 0.03);
|
||||
--focus-ring: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
||||
--maskbg: rgba(0, 0, 0, 0.4);
|
||||
--highlight-bg: rgba(45, 212, 191, 0.16);
|
||||
|
@ -311,7 +311,7 @@
|
|||
}
|
||||
|
||||
.p-error {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-text-secondary {
|
||||
|
@ -410,7 +410,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-autocomplete.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-autocomplete-panel {
|
||||
|
@ -458,7 +458,7 @@
|
|||
}
|
||||
|
||||
.p-calendar.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
|
||||
outline: 0 none;
|
||||
|
@ -736,7 +736,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-cascadeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-cascadeselect-panel {
|
||||
|
@ -838,7 +838,7 @@
|
|||
border-color: #2dd4bf;
|
||||
}
|
||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||
background-color: #424b57;
|
||||
|
@ -905,7 +905,7 @@
|
|||
margin: 0;
|
||||
}
|
||||
.p-chips.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-colorpicker-preview {
|
||||
|
@ -980,7 +980,7 @@
|
|||
right: 3rem;
|
||||
}
|
||||
.p-dropdown.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-dropdown-panel {
|
||||
|
@ -1125,7 +1125,7 @@
|
|||
}
|
||||
|
||||
.p-inputnumber.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputnumber.p-variant-filled > .p-inputnumber-input {
|
||||
background-color: #424b57;
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
||||
}
|
||||
.p-inputswitch.p-invalid > .p-inputswitch-slider {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
|
@ -1215,7 +1215,7 @@
|
|||
border-color: #2dd4bf;
|
||||
}
|
||||
.p-inputtext.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-inputtext.p-variant-filled {
|
||||
background-color: #424b57;
|
||||
|
@ -1242,7 +1242,7 @@
|
|||
}
|
||||
|
||||
.p-float-label > .p-invalid + label {
|
||||
color: #FCA5A5;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-input-icon-left > svg:first-of-type,
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
border-color: #2dd4bf;
|
||||
}
|
||||
.p-listbox.p-invalid {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-multiselect {
|
||||
|
@ -1438,7 +1438,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-multiselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
}
|
||||
|
||||
.p-password.p-invalid.p-component > .p-inputtext {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-password-panel {
|
||||
|
@ -1619,7 +1619,7 @@
|
|||
border-color: #2dd4bf;
|
||||
}
|
||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||
background-color: #424b57;
|
||||
|
@ -1664,7 +1664,7 @@
|
|||
height: 1.143rem;
|
||||
}
|
||||
.p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
.p-rating .p-rating-item.p-focus {
|
||||
outline: 0 none;
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
color: #2dd4bf;
|
||||
}
|
||||
.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
|
||||
color: #F48FB1;
|
||||
color: #f48fb1;
|
||||
}
|
||||
|
||||
.p-selectbutton .p-button {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
color: #030712;
|
||||
}
|
||||
.p-selectbutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-slider {
|
||||
|
@ -1811,7 +1811,7 @@
|
|||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.p-treeselect.p-invalid.p-component {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
|
||||
|
@ -1904,7 +1904,7 @@
|
|||
border-color: #2dd4bf;
|
||||
}
|
||||
.p-togglebutton.p-invalid > .p-button {
|
||||
border-color: #FCA5A5;
|
||||
border-color: #fca5a5;
|
||||
}
|
||||
|
||||
.p-button {
|
||||
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 1px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 1px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #111827;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #fca5a5;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #94a3b8;
|
||||
border: solid #94a3b8;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #020617;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid #ffffff;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #111827;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5162,6 +5162,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5244,6 +5262,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5341,6 +5383,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #ff5757;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #64748B;
|
||||
border: solid #64748B;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #1f2937;
|
||||
border: solid #1f2937;
|
||||
border-width: 0 0 0 6px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,16 +1,17 @@
|
|||
:root {
|
||||
font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
||||
--font-family:Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
|
||||
--surface-a:#1e1e1e;
|
||||
--surface-b:#121212;
|
||||
--surface-c:hsla(0,0%,100%,.04);
|
||||
--surface-d:hsla(0,0%,100%,.12);
|
||||
--surface-e:#1e1e1e;
|
||||
--surface-f:#262626;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#CE93D8;
|
||||
--primary-color-text:#121212;
|
||||
--font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica,
|
||||
Arial, "Lucida Grande", sans-serif;
|
||||
--surface-a: #1e1e1e;
|
||||
--surface-b: #121212;
|
||||
--surface-c: hsla(0, 0%, 100%, 0.04);
|
||||
--surface-d: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-e: #1e1e1e;
|
||||
--surface-f: #262626;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #CE93D8;
|
||||
--primary-color-text: #121212;
|
||||
--surface-0: #121212;
|
||||
--surface-50: #2a2a2a;
|
||||
--surface-100: #414141;
|
||||
|
@ -32,15 +33,15 @@
|
|||
--gray-700: #414141;
|
||||
--gray-800: #2a2a2a;
|
||||
--gray-900: #121212;
|
||||
--content-padding:1rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:4px;
|
||||
--surface-ground:#121212;
|
||||
--surface-section:#121212;
|
||||
--surface-card:#1e1e1e;
|
||||
--surface-overlay:#262626;
|
||||
--surface-border:hsla(0,0%,100%,.12);
|
||||
--surface-hover:hsla(0,0%,100%,.04);
|
||||
--content-padding: 1rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 4px;
|
||||
--surface-ground: #121212;
|
||||
--surface-section: #121212;
|
||||
--surface-card: #1e1e1e;
|
||||
--surface-overlay: #262626;
|
||||
--surface-border: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-hover: hsla(0, 0%, 100%, 0.04);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.32);
|
||||
--highlight-bg: rgba(206, 147, 216, 0.16);
|
||||
|
@ -1559,13 +1560,13 @@
|
|||
background: rgba(206, 147, 216, 0.32);
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.weak {
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.medium {
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.strong {
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-radiobutton {
|
||||
|
@ -2116,7 +2117,7 @@
|
|||
|
||||
.p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button {
|
||||
color: #212121;
|
||||
background: #90CAF9;
|
||||
background: #90caf9;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-info:not(:disabled):hover, .p-buttonset.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover {
|
||||
|
@ -2134,38 +2135,38 @@
|
|||
}
|
||||
.p-button.p-button-info.p-button-outlined, .p-buttonset.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text, .p-buttonset.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #212121;
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
|
@ -2183,38 +2184,38 @@
|
|||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
color: #212121;
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-warning:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover {
|
||||
|
@ -2232,38 +2233,38 @@
|
|||
}
|
||||
.p-button.p-button-warning.p-button-outlined, .p-buttonset.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text, .p-buttonset.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #212121;
|
||||
background: #CE93D8;
|
||||
background: #ce93d8;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
|
@ -2281,38 +2282,38 @@
|
|||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #212121;
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
|
@ -2330,33 +2331,33 @@
|
|||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5181,25 +5182,25 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #7f6003;
|
||||
|
@ -5208,13 +5209,31 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #A5D6A7;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5251,31 +5270,31 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-message.p-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5287,16 +5306,40 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #A5D6A7;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5356,27 +5399,27 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5386,14 +5429,34 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #A5D6A7;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5595,19 +5658,19 @@
|
|||
color: #121212;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5768,7 +5831,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5794,13 +5857,13 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
}
|
||||
40% {
|
||||
stroke: #01579B;
|
||||
stroke: #01579b;
|
||||
}
|
||||
66% {
|
||||
stroke: #1B5E20;
|
||||
stroke: #1b5e20;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #7f6003;
|
||||
|
@ -5845,19 +5908,19 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
:root {
|
||||
font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
||||
--font-family:Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
|
||||
--surface-a:#1e1e1e;
|
||||
--surface-b:#121212;
|
||||
--surface-c:hsla(0,0%,100%,.04);
|
||||
--surface-d:hsla(0,0%,100%,.12);
|
||||
--surface-e:#1e1e1e;
|
||||
--surface-f:#262626;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#9FA8DA;
|
||||
--primary-color-text:#121212;
|
||||
--font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica,
|
||||
Arial, "Lucida Grande", sans-serif;
|
||||
--surface-a: #1e1e1e;
|
||||
--surface-b: #121212;
|
||||
--surface-c: hsla(0, 0%, 100%, 0.04);
|
||||
--surface-d: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-e: #1e1e1e;
|
||||
--surface-f: #262626;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #9FA8DA;
|
||||
--primary-color-text: #121212;
|
||||
--surface-0: #121212;
|
||||
--surface-50: #2a2a2a;
|
||||
--surface-100: #414141;
|
||||
|
@ -32,15 +33,15 @@
|
|||
--gray-700: #414141;
|
||||
--gray-800: #2a2a2a;
|
||||
--gray-900: #121212;
|
||||
--content-padding:1rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:4px;
|
||||
--surface-ground:#121212;
|
||||
--surface-section:#121212;
|
||||
--surface-card:#1e1e1e;
|
||||
--surface-overlay:#262626;
|
||||
--surface-border:hsla(0,0%,100%,.12);
|
||||
--surface-hover:hsla(0,0%,100%,.04);
|
||||
--content-padding: 1rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 4px;
|
||||
--surface-ground: #121212;
|
||||
--surface-section: #121212;
|
||||
--surface-card: #1e1e1e;
|
||||
--surface-overlay: #262626;
|
||||
--surface-border: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-hover: hsla(0, 0%, 100%, 0.04);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.32);
|
||||
--highlight-bg: rgba(159, 168, 218, 0.16);
|
||||
|
@ -1559,13 +1560,13 @@
|
|||
background: rgba(159, 168, 218, 0.32);
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.weak {
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.medium {
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.strong {
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-radiobutton {
|
||||
|
@ -2116,7 +2117,7 @@
|
|||
|
||||
.p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button {
|
||||
color: #212121;
|
||||
background: #90CAF9;
|
||||
background: #90caf9;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-info:not(:disabled):hover, .p-buttonset.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover {
|
||||
|
@ -2134,38 +2135,38 @@
|
|||
}
|
||||
.p-button.p-button-info.p-button-outlined, .p-buttonset.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text, .p-buttonset.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #212121;
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
|
@ -2183,38 +2184,38 @@
|
|||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
color: #212121;
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-warning:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover {
|
||||
|
@ -2232,38 +2233,38 @@
|
|||
}
|
||||
.p-button.p-button-warning.p-button-outlined, .p-buttonset.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text, .p-buttonset.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #212121;
|
||||
background: #CE93D8;
|
||||
background: #ce93d8;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
|
@ -2281,38 +2282,38 @@
|
|||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #212121;
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
|
@ -2330,33 +2331,33 @@
|
|||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5181,25 +5182,25 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #7f6003;
|
||||
|
@ -5208,13 +5209,31 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #F48FB1;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5251,31 +5270,31 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-message.p-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5287,16 +5306,40 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #F48FB1;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5356,27 +5399,27 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5386,14 +5429,34 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #F48FB1;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5595,19 +5658,19 @@
|
|||
color: #121212;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5768,7 +5831,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5794,13 +5857,13 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
}
|
||||
40% {
|
||||
stroke: #01579B;
|
||||
stroke: #01579b;
|
||||
}
|
||||
66% {
|
||||
stroke: #1B5E20;
|
||||
stroke: #1b5e20;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #7f6003;
|
||||
|
@ -5845,19 +5908,19 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
|
|
@ -5216,6 +5216,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #4CAF50;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5298,6 +5316,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #4CAF50;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5395,6 +5437,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #4CAF50;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5216,6 +5216,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #ff4081;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5298,6 +5316,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #ff4081;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5395,6 +5437,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #ff4081;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
:root {
|
||||
font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
||||
--font-family:Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
|
||||
--surface-a:#1e1e1e;
|
||||
--surface-b:#121212;
|
||||
--surface-c:hsla(0,0%,100%,.04);
|
||||
--surface-d:hsla(0,0%,100%,.12);
|
||||
--surface-e:#1e1e1e;
|
||||
--surface-f:#262626;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#CE93D8;
|
||||
--primary-color-text:#121212;
|
||||
--font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica,
|
||||
Arial, "Lucida Grande", sans-serif;
|
||||
--surface-a: #1e1e1e;
|
||||
--surface-b: #121212;
|
||||
--surface-c: hsla(0, 0%, 100%, 0.04);
|
||||
--surface-d: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-e: #1e1e1e;
|
||||
--surface-f: #262626;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #CE93D8;
|
||||
--primary-color-text: #121212;
|
||||
--surface-0: #121212;
|
||||
--surface-50: #2a2a2a;
|
||||
--surface-100: #414141;
|
||||
|
@ -32,15 +33,15 @@
|
|||
--gray-700: #414141;
|
||||
--gray-800: #2a2a2a;
|
||||
--gray-900: #121212;
|
||||
--content-padding:1rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:4px;
|
||||
--surface-ground:#121212;
|
||||
--surface-section:#121212;
|
||||
--surface-card:#1e1e1e;
|
||||
--surface-overlay:#262626;
|
||||
--surface-border:hsla(0,0%,100%,.12);
|
||||
--surface-hover:hsla(0,0%,100%,.04);
|
||||
--content-padding: 1rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 4px;
|
||||
--surface-ground: #121212;
|
||||
--surface-section: #121212;
|
||||
--surface-card: #1e1e1e;
|
||||
--surface-overlay: #262626;
|
||||
--surface-border: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-hover: hsla(0, 0%, 100%, 0.04);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.32);
|
||||
--highlight-bg: rgba(206, 147, 216, 0.16);
|
||||
|
@ -1559,13 +1560,13 @@
|
|||
background: rgba(206, 147, 216, 0.32);
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.weak {
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.medium {
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.strong {
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-radiobutton {
|
||||
|
@ -2116,7 +2117,7 @@
|
|||
|
||||
.p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button {
|
||||
color: #212121;
|
||||
background: #90CAF9;
|
||||
background: #90caf9;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-info:not(:disabled):hover, .p-buttonset.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover {
|
||||
|
@ -2134,38 +2135,38 @@
|
|||
}
|
||||
.p-button.p-button-info.p-button-outlined, .p-buttonset.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text, .p-buttonset.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #212121;
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
|
@ -2183,38 +2184,38 @@
|
|||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
color: #212121;
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-warning:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover {
|
||||
|
@ -2232,38 +2233,38 @@
|
|||
}
|
||||
.p-button.p-button-warning.p-button-outlined, .p-buttonset.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text, .p-buttonset.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #212121;
|
||||
background: #CE93D8;
|
||||
background: #ce93d8;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
|
@ -2281,38 +2282,38 @@
|
|||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #212121;
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
|
@ -2330,33 +2331,33 @@
|
|||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5181,25 +5182,25 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #7f6003;
|
||||
|
@ -5208,13 +5209,31 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #A5D6A7;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5251,31 +5270,31 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-message.p-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5287,16 +5306,40 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #A5D6A7;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5356,27 +5399,27 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5386,14 +5429,34 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #A5D6A7;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5595,19 +5658,19 @@
|
|||
color: #121212;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5768,7 +5831,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5794,13 +5857,13 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
}
|
||||
40% {
|
||||
stroke: #01579B;
|
||||
stroke: #01579b;
|
||||
}
|
||||
66% {
|
||||
stroke: #1B5E20;
|
||||
stroke: #1b5e20;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #7f6003;
|
||||
|
@ -5845,19 +5908,19 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
:root {
|
||||
font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
||||
--font-family:Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
|
||||
--surface-a:#1e1e1e;
|
||||
--surface-b:#121212;
|
||||
--surface-c:hsla(0,0%,100%,.04);
|
||||
--surface-d:hsla(0,0%,100%,.12);
|
||||
--surface-e:#1e1e1e;
|
||||
--surface-f:#262626;
|
||||
--text-color:rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary:rgba(255, 255, 255, 0.6);
|
||||
--primary-color:#9FA8DA;
|
||||
--primary-color-text:#121212;
|
||||
--font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica,
|
||||
Arial, "Lucida Grande", sans-serif;
|
||||
--surface-a: #1e1e1e;
|
||||
--surface-b: #121212;
|
||||
--surface-c: hsla(0, 0%, 100%, 0.04);
|
||||
--surface-d: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-e: #1e1e1e;
|
||||
--surface-f: #262626;
|
||||
--text-color: rgba(255, 255, 255, 0.87);
|
||||
--text-color-secondary: rgba(255, 255, 255, 0.6);
|
||||
--primary-color: #9FA8DA;
|
||||
--primary-color-text: #121212;
|
||||
--surface-0: #121212;
|
||||
--surface-50: #2a2a2a;
|
||||
--surface-100: #414141;
|
||||
|
@ -32,15 +33,15 @@
|
|||
--gray-700: #414141;
|
||||
--gray-800: #2a2a2a;
|
||||
--gray-900: #121212;
|
||||
--content-padding:1rem;
|
||||
--inline-spacing:0.5rem;
|
||||
--border-radius:4px;
|
||||
--surface-ground:#121212;
|
||||
--surface-section:#121212;
|
||||
--surface-card:#1e1e1e;
|
||||
--surface-overlay:#262626;
|
||||
--surface-border:hsla(0,0%,100%,.12);
|
||||
--surface-hover:hsla(0,0%,100%,.04);
|
||||
--content-padding: 1rem;
|
||||
--inline-spacing: 0.5rem;
|
||||
--border-radius: 4px;
|
||||
--surface-ground: #121212;
|
||||
--surface-section: #121212;
|
||||
--surface-card: #1e1e1e;
|
||||
--surface-overlay: #262626;
|
||||
--surface-border: hsla(0, 0%, 100%, 0.12);
|
||||
--surface-hover: hsla(0, 0%, 100%, 0.04);
|
||||
--focus-ring: none;
|
||||
--maskbg: rgba(0, 0, 0, 0.32);
|
||||
--highlight-bg: rgba(159, 168, 218, 0.16);
|
||||
|
@ -1559,13 +1560,13 @@
|
|||
background: rgba(159, 168, 218, 0.32);
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.weak {
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.medium {
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
}
|
||||
.p-password-panel .p-password-meter .p-password-strength.strong {
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-radiobutton {
|
||||
|
@ -2116,7 +2117,7 @@
|
|||
|
||||
.p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button {
|
||||
color: #212121;
|
||||
background: #90CAF9;
|
||||
background: #90caf9;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-info:not(:disabled):hover, .p-buttonset.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover {
|
||||
|
@ -2134,38 +2135,38 @@
|
|||
}
|
||||
.p-button.p-button-info.p-button-outlined, .p-buttonset.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text, .p-buttonset.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):hover, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(144, 202, 249, 0.04);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
.p-button.p-button-info.p-button-text:not(:disabled):active, .p-buttonset.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(144, 202, 249, 0.16);
|
||||
border-color: transparent;
|
||||
color: #90CAF9;
|
||||
color: #90caf9;
|
||||
}
|
||||
|
||||
.p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
|
||||
color: #212121;
|
||||
background: #C5E1A5;
|
||||
background: #c5e1a5;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-success:not(:disabled):hover, .p-buttonset.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover {
|
||||
|
@ -2183,38 +2184,38 @@
|
|||
}
|
||||
.p-button.p-button-success.p-button-outlined, .p-buttonset.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text, .p-buttonset.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):hover, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(197, 225, 165, 0.04);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
.p-button.p-button-success.p-button-text:not(:disabled):active, .p-buttonset.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(197, 225, 165, 0.16);
|
||||
border-color: transparent;
|
||||
color: #C5E1A5;
|
||||
color: #c5e1a5;
|
||||
}
|
||||
|
||||
.p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
|
||||
color: #212121;
|
||||
background: #FFF59D;
|
||||
background: #fff59d;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-warning:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover {
|
||||
|
@ -2232,38 +2233,38 @@
|
|||
}
|
||||
.p-button.p-button-warning.p-button-outlined, .p-buttonset.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text, .p-buttonset.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(255, 245, 157, 0.04);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
.p-button.p-button-warning.p-button-text:not(:disabled):active, .p-buttonset.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(255, 245, 157, 0.16);
|
||||
border-color: transparent;
|
||||
color: #FFF59D;
|
||||
color: #fff59d;
|
||||
}
|
||||
|
||||
.p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
|
||||
color: #212121;
|
||||
background: #CE93D8;
|
||||
background: #ce93d8;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-help:not(:disabled):hover, .p-buttonset.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover {
|
||||
|
@ -2281,38 +2282,38 @@
|
|||
}
|
||||
.p-button.p-button-help.p-button-outlined, .p-buttonset.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text, .p-buttonset.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):hover, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(206, 147, 216, 0.04);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
.p-button.p-button-help.p-button-text:not(:disabled):active, .p-buttonset.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
border-color: transparent;
|
||||
color: #CE93D8;
|
||||
color: #ce93d8;
|
||||
}
|
||||
|
||||
.p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
|
||||
color: #212121;
|
||||
background: #EF9A9A;
|
||||
background: #ef9a9a;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-button.p-button-danger:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover {
|
||||
|
@ -2330,33 +2331,33 @@
|
|||
}
|
||||
.p-button.p-button-danger.p-button-outlined, .p-buttonset.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border: 0px none;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text, .p-buttonset.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text {
|
||||
background-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
border-color: transparent;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover {
|
||||
background: rgba(239, 154, 154, 0.04);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
.p-button.p-button-danger.p-button-text:not(:disabled):active, .p-buttonset.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active {
|
||||
background: rgba(239, 154, 154, 0.16);
|
||||
border-color: transparent;
|
||||
color: #EF9A9A;
|
||||
color: #ef9a9a;
|
||||
}
|
||||
|
||||
.p-button.p-button-contrast, .p-buttonset.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
|
||||
|
@ -5181,25 +5182,25 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-info .p-inline-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-success .p-inline-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-inline-message.p-inline-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #7f6003;
|
||||
|
@ -5208,13 +5209,31 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #F48FB1;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
|
@ -5251,31 +5270,31 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-message.p-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-icon {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-info .p-message-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-message.p-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-icon {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-success .p-message-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-message.p-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5287,16 +5306,40 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-message.p-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-icon {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #F48FB1;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
|
@ -5356,27 +5399,27 @@
|
|||
box-shadow: none;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info {
|
||||
background: #B3E5FC;
|
||||
background: #b3e5fc;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
|
||||
color: #01579B;
|
||||
color: #01579b;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success {
|
||||
background: #C8E6C9;
|
||||
background: #c8e6c9;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
|
||||
color: #1B5E20;
|
||||
color: #1b5e20;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-warn {
|
||||
background: #FFECB3;
|
||||
background: #ffecb3;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #7f6003;
|
||||
|
@ -5386,14 +5429,34 @@
|
|||
color: #7f6003;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error {
|
||||
background: #FFCDD2;
|
||||
background: #ffcdd2;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
color: #b71c1c;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #F48FB1;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #ffffff;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #121212;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #121212;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
|
@ -5595,19 +5658,19 @@
|
|||
color: #121212;
|
||||
}
|
||||
.p-badge.p-badge-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
|
@ -5768,7 +5831,7 @@
|
|||
.p-progress-spinner-circle {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
animation: p-progress-spinner-dash 1.5s ease-in-out infinite, p-progress-spinner-color 6s ease-in-out infinite;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
@ -5794,13 +5857,13 @@
|
|||
}
|
||||
@keyframes p-progress-spinner-color {
|
||||
100%, 0% {
|
||||
stroke: #B71C1C;
|
||||
stroke: #b71c1c;
|
||||
}
|
||||
40% {
|
||||
stroke: #01579B;
|
||||
stroke: #01579b;
|
||||
}
|
||||
66% {
|
||||
stroke: #1B5E20;
|
||||
stroke: #1b5e20;
|
||||
}
|
||||
80%, 90% {
|
||||
stroke: #7f6003;
|
||||
|
@ -5845,19 +5908,19 @@
|
|||
border-radius: 4px;
|
||||
}
|
||||
.p-tag.p-tag-success {
|
||||
background-color: #C5E1A5;
|
||||
background-color: #c5e1a5;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-info {
|
||||
background-color: #90CAF9;
|
||||
background-color: #90caf9;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-warning {
|
||||
background-color: #FFF59D;
|
||||
background-color: #fff59d;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-danger {
|
||||
background-color: #EF9A9A;
|
||||
background-color: #ef9a9a;
|
||||
color: #212121;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
|
|
|
@ -5216,6 +5216,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #4CAF50;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5298,6 +5316,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #4CAF50;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5395,6 +5437,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #4CAF50;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
|
@ -5216,6 +5216,24 @@
|
|||
.p-inline-message.p-inline-message-error .p-inline-message-icon {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary {
|
||||
background: #ff4081;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-secondary .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 1px;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message.p-inline-message-contrast .p-inline-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-inline-message .p-inline-message-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 0.5rem;
|
||||
|
@ -5298,6 +5316,30 @@
|
|||
.p-message.p-message-error .p-message-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-message.p-message-secondary {
|
||||
background: #ff4081;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-secondary .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-icon {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message.p-message-contrast .p-message-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-message .p-message-text {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
|
@ -5395,6 +5437,26 @@
|
|||
.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
|
||||
color: #B71C1C;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary {
|
||||
background: #ff4081;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-secondary .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast {
|
||||
background: #212121;
|
||||
border: solid transparent;
|
||||
border-width: 0 0 0 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-message-icon,
|
||||
.p-toast .p-toast-message.p-toast-message-contrast .p-toast-icon-close {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-galleria .p-galleria-close {
|
||||
margin: 0.5rem;
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -5561,14 +5561,6 @@
|
|||
background-color: #eb9a9c;
|
||||
color: #1d1e27;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #d4ea93;
|
||||
color: #1d1e27;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #1d1e27;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5811,14 +5803,6 @@
|
|||
background-color: #eb9a9c;
|
||||
color: #1d1e27;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #d4ea93;
|
||||
color: #1d1e27;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #1d1e27;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
|
@ -5561,14 +5561,6 @@
|
|||
background-color: #ea5455;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #a1c30d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #212529;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5811,14 +5803,6 @@
|
|||
background-color: #ea5455;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #a1c30d;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #212529;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -5618,14 +5618,6 @@
|
|||
background-color: #e693a9;
|
||||
color: #0e1315;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #b4bfcd;
|
||||
color: #0e1315;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #0e1315;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5868,14 +5860,6 @@
|
|||
background-color: #e693a9;
|
||||
color: #0e1315;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #b4bfcd;
|
||||
color: #0e1315;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #ffffff;
|
||||
color: #0e1315;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
|
@ -5618,14 +5618,6 @@
|
|||
background-color: #d45472;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-secondary {
|
||||
background-color: #8191a6;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-contrast {
|
||||
background-color: #3b3b3b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-badge.p-badge-lg {
|
||||
font-size: 1.125rem;
|
||||
min-width: 2.25rem;
|
||||
|
@ -5868,14 +5860,6 @@
|
|||
background-color: #d45472;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-secondary {
|
||||
background-color: #8191a6;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag.p-tag-contrast {
|
||||
background-color: #3b3b3b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-tag .p-tag-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue