sws-frontend
Version:
sws frontend project
58 lines (39 loc) • 800 B
CSS
.errormodal .details {
/*word-break: break-word;*/
height: auto;
border-radius: 0;
border:none;
padding: 15px;
margin-bottom: 0;
}
.modal-body-wrapper{
max-height: calc(100vh - 200px);
overflow: auto;
}
.errormodal {
background: rgba(0,0,0,.3);
}
.errormodal .modal-dialog {
margin: 50px auto;
}
.errormodal .modal-content {
border-radius:0px;
border: none;
-webkit-background-clip: padding-box;
background-clip: inherit;
}
.errormodal .modal-header {
background-color: var(--theme-background);
color:white;
font-weight: normal;
font-size: large;
border: none;
}
.errormodal .modal-header .close {
color:white;
opacity: .5;
}
.errormodal .modal-footer button:hover {
background-color: var(--theme-background) ;
color:white
}