Remote-Falcon / remote-falcon-issue-tracker

Remote Falcon Issue Tracker
0 stars 0 forks source link

Fix "Request Successful" popup message location. #2

Open whitesoup12 opened 3 months ago

whitesoup12 commented 3 months ago

Is your feature request related to a problem? Please describe. On default viewer pages, the success message appears below the sequences list.

Describe the solution you'd like Need to fix the CSS for the Pop Up notification on the viewer page. The default and the "premium" templates currently make the popup show at the very bottom of the song list, which is off screen if you list is longer than average. There was some code posted in the past to fix this to where it pops up in the center of the screen, regardless of your scroll position. This should probably be added as default code. Adjust colors, etc to match your theme. Example, Request Successful Message:

.innerRequestSuccessful {
     position: fixed;
     top: 50%;
     margin-left: 10%;
     background-color: orange;
     width: 80%;
     transform: translateY(-50%);
     color: #000;
     text-align: center;
     font-size: 24px;
     font-weight: bold;
     opacity: .9;
     border-radius: 10px;
}

Describe alternatives you've considered None

Additional context None