filesafe/public/css/sweetalert.css
Bobby Wibowo cf570347e6
Updates
* Added ship waifu renders to homepage. These renders are toggleable since some of them maybe a bit NSFW-ish (state saved to browser's local storage).

* Updated lazyload to v10.19.0.

* Git commit URL is now have dotted bottom border.

* Thumbnail modal (the one that appears when you click display thumbnail button in lists view) now have a "Load original" button. For images it will simply load the original images, but for videos it will show a video player (relies on the browser's support for <video> tag). Thumbs view will now also have the "display thumbnail" button.

* Small changes to "add to album" modal.

* Small changes to alignment to modals in general.
2018-10-18 20:26:40 +07:00

140 lines
2.2 KiB
CSS

.swal-modal {
background-color: #31363b;
}
.swal-modal .field {
text-align: initial;
}
.swal-title,
.swal-text {
color: #eff0f1;
}
.swal-text {
text-align: center;
}
.swal-content .label,
.swal-content .checkbox,
.swal-content .radio {
color: #eff0f1;
}
.swal-content .checkbox:hover,
.swal-content .radio:hover {
color: #bdc3c7;
}
.swal-content .is-code {
font-family: 'Courier New', Courier, monospace;
border: 1px dashed #eff0f1;
border-radius: 5px;
margin-top: 5px;
}
.swal-button {
background-color: #3794d2;
color: #eff0f1;
}
.swal-button:hover {
background-color: #60a8dc;
}
.swal-button:focus {
-webkit-box-shadow: 0 0 0 1px #31363b, 0 0 0 3px rgba(55, 148, 210, 0.29);
box-shadow: 0 0 0 1px #31363b, 0 0 0 3px rgba(55, 148, 210, 0.29);
}
.swal-button--loading {
color: transparent;
}
.swal-button--danger {
background-color: #da4453;
}
.swal-icon--info {
border-color: #3794d2;
}
.swal-icon--info:after,
.swal-icon--info:before {
background-color: #3794d2;
}
.swal-icon--error {
border-color: #da4453;
}
.swal-icon--error__line {
background-color: #da4453;
}
.swal-icon--warning {
border-color: #f67400;
-webkit-animation: pulseWarning .5s infinite alternate;
animation: pulseWarning .5s infinite alternate;
}
.swal-icon--warning__body,
.swal-icon--warning__dot {
background-color: #f67400;
-webkit-animation: pulseWarningBody .5s infinite alternate;
animation: pulseWarningBody .5s infinite alternate;
}
@-webkit-keyframes pulseWarning {
0% {
border-color: #ffaa60;
}
to {
border-color: #f67400;
}
}
@keyframes pulseWarning {
0% {
border-color: #ffaa60;
}
to {
border-color: #f67400;
}
}
@-webkit-keyframes pulseWarningBody {
0% {
background-color: #ffaa60;
}
to {
background-color: #f67400;
}
}
@keyframes pulseWarningBody {
0% {
background-color: #ffaa60;
}
to {
background-color: #f67400;
}
}
.swal-icon--success {
border-color: #27ae60;
}
.swal-icon--success__line {
background-color: #27ae60;
}
.swal-icon--success__hide-corners {
background-color: #31363b;
}
.swal-icon--success::after,
.swal-icon--success::before {
background: #31363b;
}