-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug reporting form submission toast placement is fixed
This fix is with reference to the issue : Form submission and Include screenshot - functionality needs fixing #13 (link - virtual-labs/svc-bug-report#13)
- Loading branch information
Showing
4 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* assets/css/toast.css */ | ||
.custom-toast-popup { | ||
border-radius: 10px; /* Rounded corners */ | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Custom shadow */ | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
position: fixed; /* Fixed positioning */ | ||
top: 50%; /* Center vertically */ | ||
left: 50%; /* Center horizontally */ | ||
transform: translate(-50%, -50%); /* Adjust for exact centering */ | ||
z-index: 1000; /* Ensure it appears above other elements */ | ||
padding: 10px; | ||
color: #fff; | ||
font-size: 1rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
<link rel="stylesheet" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway&display=swap" rel="stylesheet" /> | ||
<link href="css/vlabs-style.css" rel="stylesheet" /> | ||
<link href="css/toast.css" rel="stylesheet" /> | ||
<script src="js/jquery-3.4.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" | ||
integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" | ||
|