Skip to content

Commit

Permalink
Merge pull request #788 from HRIDYANSHU054/solved-Issue#741
Browse files Browse the repository at this point in the history
Solved - Issue #741 Upload model form on view page needs adjustment o…
  • Loading branch information
birm committed Apr 24, 2024
2 parents bf83a3e + 37726e7 commit 3417f7e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions apps/model/model.css
Expand Up @@ -276,6 +276,14 @@ ul.disabled {
}
#upload_panel .modalbox-content{
width: 30%;

@media only screen and ( max-width: 1100px ) {
width: 50%;
}

@media only screen and ( max-width: 600px ) {
width: 85%;
}
}

#roi_panel .modalbox-content{
Expand Down
10 changes: 9 additions & 1 deletion components/modalbox/modalbox.css
Expand Up @@ -22,11 +22,19 @@
padding: 0;
border: 1px solid #888;
width: 80%;

box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
animation-duration: 0.4s;
}

.modalbox-content #modelupload,
.modalbox-content #weightsupload {
@media only screen and (max-width: 600px) {
width: 90%;
}
}

/* Add Animation */
Expand Down

0 comments on commit 3417f7e

Please sign in to comment.