parent
ae8f539844
commit
881a28eb79
@ -1,71 +0,0 @@
|
|||||||
.alert-window {
|
|
||||||
position: fixed;
|
|
||||||
width: 300px;
|
|
||||||
z-index: 10002;
|
|
||||||
|
|
||||||
right: 20px;
|
|
||||||
bottom: 0px;
|
|
||||||
|
|
||||||
.alert {
|
|
||||||
&::before {
|
|
||||||
position: relative;
|
|
||||||
top: -15px;
|
|
||||||
left: -15px;
|
|
||||||
display: block;
|
|
||||||
height: 2px;
|
|
||||||
width: 0;
|
|
||||||
transition: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-info {
|
|
||||||
color: $info;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-warning {
|
|
||||||
color: $warning;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-success {
|
|
||||||
color: $success;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-danger {
|
|
||||||
color: $danger;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.animate {
|
|
||||||
&.alert-info::before {
|
|
||||||
background-color: lighten($info, 25%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-warning::before {
|
|
||||||
background-color: lighten($warning, 25%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-success::before {
|
|
||||||
background-color: lighten($success, 25%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.alert-danger::before {
|
|
||||||
background-color: lighten($danger, 25%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
width: calc(100% + 50px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
background-color: var(--bs-body-bg);
|
|
||||||
border: 0;
|
|
||||||
border-left: 5px solid !important;
|
|
||||||
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25), 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
|
|
||||||
|
|
||||||
strong {
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
padding: 10px 0px 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,45 @@
|
|||||||
|
.alert-window {
|
||||||
|
position: fixed;
|
||||||
|
width: 300px;
|
||||||
|
z-index: 10002;
|
||||||
|
|
||||||
|
right: 20px;
|
||||||
|
bottom: 0px;
|
||||||
|
|
||||||
|
.alert {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.alert-progress {
|
||||||
|
width: 0;
|
||||||
|
&.animate {
|
||||||
|
width: calc(100% + 50px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.alert-info {
|
||||||
|
color: $info;
|
||||||
|
.alert-progress { background-color: $info; }
|
||||||
|
}
|
||||||
|
|
||||||
|
&.alert-warning {
|
||||||
|
color: $warning;
|
||||||
|
.alert-progress { background-color: $warning; }
|
||||||
|
}
|
||||||
|
|
||||||
|
&.alert-success {
|
||||||
|
color: $success;
|
||||||
|
.alert-progress { background-color: $success; }
|
||||||
|
}
|
||||||
|
|
||||||
|
&.alert-danger {
|
||||||
|
color: $danger;
|
||||||
|
.alert-progress { background-color: $danger; }
|
||||||
|
}
|
||||||
|
|
||||||
|
background-color: var(--bs-body-bg);
|
||||||
|
border: 0;
|
||||||
|
border-left: 5px solid !important;
|
||||||
|
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25), 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue