Penambahan FrontEnd All-New-Manufacture

This commit is contained in:
pand03
2026-01-31 14:23:04 +07:00
parent 1b2e320b2b
commit 4feb21dcbc
2891 changed files with 426849 additions and 135 deletions

View File

@@ -0,0 +1,63 @@
.toast {
&-success {
background-color: var(--primary);
}
&-info {
background-color: $info;
}
&-warning {
background-color: $warning;
}
&-error {
background-color: $danger;
}
}
#toast-container {
&>div {
box-shadow: none;
border-radius: 0;
width: auto;
max-width: 15.625rem;
opacity: 1;
border-radius: $radius;
@at-root [direction="rtl"] & {
padding: 0.9375rem 3.125rem 0.9375rem 0.9375rem;
background-position: calc(100% - 0.9375rem);
}
&:hover {
box-shadow: none;
}
}
.toast-title {
margin-bottom: 0.3125rem;
font-weight: 600;
}
.toast-message {
font-size: 0.75rem;
}
.toast-close-button {
opacity: 1;
font-size: 1.25rem;
font-weight: normal;
text-shadow: none;
}
}
[direction="rtl"] {
.toast-top-right.demo_rtl_class {
#{$dlab-pos-left}: 0.75rem;
#{$dlab-pos-right}: auto;
}
}