1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2025-06-16 13:46:16 +02:00

Added styles extracted from reForis.

This commit is contained in:
Maciej Lenartowicz
2020-01-22 13:21:46 +01:00
parent 3aac48d2bf
commit 85e42980ec
6 changed files with 53 additions and 2 deletions

15
src/bootstrap/Modal.css Normal file
View File

@ -0,0 +1,15 @@
@keyframes modalFade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.modal.show {
display: block;
animation-name: modalFade;
animation-duration: .3s;
background: rgba(0, 0, 0, 0.2);
}