2017-03-24 02:51:44 +00:00
|
|
|
#message-box {
|
2017-03-25 19:50:37 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
position: fixed;
|
2017-10-12 23:52:49 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.45);
|
2017-03-25 19:50:37 +00:00
|
|
|
animation: fadein .25s ease-in-out;
|
|
|
|
z-index: 9999990;
|
2017-08-25 17:50:15 +00:00
|
|
|
-moz-user-select: none;
|
2017-03-25 19:50:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box > div {
|
2017-03-24 02:51:44 +00:00
|
|
|
top: 3rem;
|
|
|
|
right: 3rem;
|
|
|
|
min-width: 10rem;
|
|
|
|
max-width: 50vw;
|
|
|
|
min-height: 5rem;
|
|
|
|
max-height: 90vh;
|
|
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: white;
|
2017-10-12 23:52:49 +00:00
|
|
|
box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.225);
|
2017-03-25 19:50:37 +00:00
|
|
|
z-index: 9999991;
|
2017-08-25 17:50:15 +00:00
|
|
|
-moz-user-select: text;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box.fadeout {
|
|
|
|
animation: fadeout .5s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:50:37 +00:00
|
|
|
#message-box.center {
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 19:50:37 +00:00
|
|
|
#message-box.center #message-box-contents {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-11-09 07:54:31 +00:00
|
|
|
#message-box.center #message-box-contents pre {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:50:37 +00:00
|
|
|
#message-box.center > div {
|
|
|
|
top: unset;
|
|
|
|
right: unset;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-11-09 04:26:50 +00:00
|
|
|
#message-box.pre #message-box-contents {
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:51:44 +00:00
|
|
|
#message-box-title {
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: rgb(145, 208, 198);
|
2017-03-26 04:55:03 +00:00
|
|
|
padding: .75rem 24px .75rem 52px;
|
2017-03-24 02:51:44 +00:00
|
|
|
font-size: 1rem;
|
2017-03-25 19:50:37 +00:00
|
|
|
position: relative;
|
2017-11-11 05:21:52 +00:00
|
|
|
min-height: 42px;
|
|
|
|
box-sizing: border-box;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box-title::before {
|
|
|
|
content: "";
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
padding: 0 32px 32px 0;
|
2017-03-25 19:50:37 +00:00
|
|
|
background: url(/images/icon/32.png);
|
|
|
|
position: absolute;
|
2017-03-26 04:55:03 +00:00
|
|
|
left: .5rem;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
2017-03-25 19:50:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box.danger #message-box-title {
|
|
|
|
background-color: firebrick;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-box.danger #message-box-title::before {
|
|
|
|
background: url('/images/icon/32x.png');
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-box.danger #message-box-contents {
|
|
|
|
font-weight: bold;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-08-31 10:28:56 +00:00
|
|
|
#message-box.danger #message-box-close-icon svg {
|
|
|
|
fill: maroon;
|
|
|
|
}
|
|
|
|
|
2017-04-02 23:18:43 +00:00
|
|
|
#message-box.danger #message-box-close-icon svg:hover {
|
|
|
|
fill: #600;
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:51:44 +00:00
|
|
|
#message-box-close-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
2017-04-02 23:18:43 +00:00
|
|
|
right: 3px;
|
2017-04-05 13:14:59 +00:00
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-box-close-icon svg {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box-contents {
|
|
|
|
overflow: auto;
|
2017-03-25 19:50:37 +00:00
|
|
|
padding: 1.5rem .75rem;
|
2017-03-24 02:51:44 +00:00
|
|
|
position: relative;
|
|
|
|
flex-grow: 9;
|
2017-09-30 17:14:44 +00:00
|
|
|
overflow-wrap: break-word;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box-buttons {
|
2017-03-25 20:39:21 +00:00
|
|
|
padding: .75rem .375rem;
|
2017-03-24 02:51:44 +00:00
|
|
|
background-color: #f0f0f0;
|
2017-03-25 19:50:37 +00:00
|
|
|
text-align: center;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 20:39:21 +00:00
|
|
|
.non-windows #message-box-buttons {
|
|
|
|
text-align: right;
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-box-buttons button {
|
|
|
|
margin: 0 .375rem;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadein {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeout {
|
|
|
|
from {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|