mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
38 lines
716 B
Plaintext
38 lines
716 B
Plaintext
//
|
|
// Custom alerts (Based on Sweet Alert)
|
|
// --------------------------------------------------
|
|
|
|
.sweet-overlay {
|
|
background-color: @overlay-background;
|
|
z-index: @zindex-alert - 1;
|
|
}
|
|
|
|
.sweet-alert {
|
|
text-align: right;
|
|
border-radius: @border-radius-base;
|
|
.box-shadow(@popup-box-shadow);
|
|
z-index: @zindex-alert;
|
|
|
|
h2 {
|
|
word-break: break-word;
|
|
word-wrap: break-word;
|
|
max-height: 350px;
|
|
overflow-y: auto;
|
|
|
|
margin: 10px 0 17px 0;
|
|
color: #2b3e50;
|
|
text-align: left;
|
|
font-size: 15px;
|
|
line-height: 23px;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
p.text-muted {
|
|
margin-bottom: 20px;
|
|
color: #555555;
|
|
}
|
|
}
|