217 lines
5.3 KiB
JavaScript
217 lines
5.3 KiB
JavaScript
|
export default {
|
||
|
css: `
|
||
|
.p-toast {
|
||
|
width: 25rem;
|
||
|
white-space: pre-line;
|
||
|
word-break: break-word;
|
||
|
}
|
||
|
|
||
|
.p-toast-message {
|
||
|
backdrop-filter: blur(var(--p-toast-blur));
|
||
|
margin: 0 0 1rem 0;
|
||
|
border-radius: var(--p-rounded-base);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-icon {
|
||
|
flex-shrink: 0;
|
||
|
font-size: 1.125rem;
|
||
|
width: 1.125rem;
|
||
|
height: 1.125rem;
|
||
|
}
|
||
|
|
||
|
.p-toast-message-content {
|
||
|
display: flex;
|
||
|
align-items: flex-start;
|
||
|
padding: 0.75rem;
|
||
|
gap: 0.5rem;
|
||
|
}
|
||
|
|
||
|
.p-toast-message-text {
|
||
|
flex: 1 1 auto;
|
||
|
}
|
||
|
|
||
|
.p-toast-summary {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
.p-toast-detail {
|
||
|
margin-top: 0.5rem;
|
||
|
font-size: 0.875rem;
|
||
|
}
|
||
|
|
||
|
.p-toast-icon-close {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
border-radius: 50%;
|
||
|
cursor: pointer;
|
||
|
background: transparent;
|
||
|
transition: background-color var(--p-transition-duration), color var(--p-transition-duration), outline-color var(--p-transition-duration);
|
||
|
outline-color: transparent;
|
||
|
color: inherit;
|
||
|
width: 1.75rem;
|
||
|
height: 1.75rem;
|
||
|
margin-top: -25%;
|
||
|
right: -25%;
|
||
|
}
|
||
|
|
||
|
.p-toast-icon-close:focus-visible {
|
||
|
outline-width: var(--p-focus-ring-width);
|
||
|
outline-style: var(--p-focus-ring-style);
|
||
|
outline-offset: var(--p-focus-ring-offset);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-info {
|
||
|
background: var(--p-toast-info-background);
|
||
|
border: 1px solid var(--p-toast-info-border-color);
|
||
|
color: var(--p-toast-info-text-color);
|
||
|
box-shadow: var(--p-toast-info-box-shadow);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-info .p-toast-detail {
|
||
|
color: var(--p-toast-info-detail-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-info .p-toast-icon-close:focus-visible {
|
||
|
outline-color: var(--p-toast-info-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-info .p-toast-icon-close:hover {
|
||
|
background: var(--p-toast-info-close-background-hover);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-success {
|
||
|
background: var(--p-toast-success-background);
|
||
|
border: 1px solid var(--p-toast-success-border-color);
|
||
|
color: var(--p-toast-success-text-color);
|
||
|
box-shadow: var(--p-toast-success-box-shadow);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-success .p-toast-detail {
|
||
|
color: var(--p-toast-success-detail-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-success .p-toast-icon-close:focus-visible {
|
||
|
outline-color: var(--p-toast-success-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-success .p-toast-icon-close:hover {
|
||
|
background: var(--p-toast-success-close-background-hover);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-warn {
|
||
|
background: var(--p-toast-warn-background);
|
||
|
border: 1px solid var(--p-toast-warn-border-color);
|
||
|
color: var(--p-toast-warn-text-color);
|
||
|
box-shadow: var(--p-toast-warn-box-shadow);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-warn .p-toast-detail {
|
||
|
color: var(--p-toast-warn-detail-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-warn .p-toast-icon-close:focus-visible {
|
||
|
outline-color: var(--p-toast-warn-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-warn .p-toast-icon-close:hover {
|
||
|
background: var(--p-toast-warn-close-background-hover);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-error {
|
||
|
background: var(--p-toast-error-background);
|
||
|
border: 1px solid var(--p-toast-error-border-color);
|
||
|
color: var(--p-toast-error-text-color);
|
||
|
box-shadow: var(--p-toast-error-box-shadow);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-error .p-toast-detail {
|
||
|
color: var(--p-toast-error-detail-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-error .p-toast-icon-close:focus-visible {
|
||
|
outline-color: var(--p-toast-error-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-error .p-toast-icon-close:hover {
|
||
|
background: var(--p-toast-error-close-background-hover);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-secondary {
|
||
|
background: var(--p-toast-secondary-background);
|
||
|
border: 1px solid var(--p-toast-secondary-border-color);
|
||
|
color: var(--p-toast-secondary-text-color);
|
||
|
box-shadow: var(--p-toast-secondary-box-shadow);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-secondary .p-toast-detail {
|
||
|
color: var(--p-toast-secondary-detail-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-secondary .p-toast-icon-close:focus-visible {
|
||
|
outline-color: var(--p-toast-secondary-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-secondary .p-toast-icon-close:hover {
|
||
|
background: var(--p-toast-secondary-close-background-hover);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-contrast {
|
||
|
background: var(--p-toast-contrast-background);
|
||
|
border: 1px solid var(--p-toast-contrast-border-color);
|
||
|
color: var(--p-toast-contrast-text-color);
|
||
|
box-shadow: var(--p-toast-contrast-box-shadow);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-contrast .p-toast-detail {
|
||
|
color: var(--p-toast-contrast-detail-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-contrast .p-toast-icon-close:focus-visible {
|
||
|
outline-color: var(--p-toast-contrast-text-color);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-contrast .p-toast-icon-close:hover {
|
||
|
background: var(--p-toast-contrast-close-background-hover);
|
||
|
}
|
||
|
|
||
|
.p-toast-top-center {
|
||
|
transform: translateX(-50%);
|
||
|
}
|
||
|
|
||
|
.p-toast-bottom-center {
|
||
|
transform: translateX(-50%);
|
||
|
}
|
||
|
|
||
|
.p-toast-center {
|
||
|
min-width: 20vw;
|
||
|
transform: translate(-50%, -50%);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-enter-from {
|
||
|
opacity: 0;
|
||
|
transform: translateY(50%);
|
||
|
}
|
||
|
|
||
|
.p-toast-message-leave-from {
|
||
|
max-height: 1000px;
|
||
|
}
|
||
|
|
||
|
.p-toast .p-toast-message.p-toast-message-leave-to {
|
||
|
max-height: 0;
|
||
|
opacity: 0;
|
||
|
margin-bottom: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.p-toast-message-enter-active {
|
||
|
transition: transform 0.3s, opacity 0.3s;
|
||
|
}
|
||
|
|
||
|
.p-toast-message-leave-active {
|
||
|
transition: max-height 0.45s cubic-bezier(0, 1, 0, 1), opacity 0.3s, margin-bottom 0.3s;
|
||
|
}
|
||
|
`
|
||
|
};
|