Murali-group / GraphSpace

The interactive graph sharing website.
http://graphspace.org
GNU General Public License v2.0
30 stars 41 forks source link

Fix Export Button UI bug #451

Closed jddanna closed 3 years ago

jddanna commented 3 years ago

This is the same PR fix as #346 but I created a new PR because the outdated PR had a deleted repo.

This fixes #343 concerning UI of Export button. Bug : Export button is always at the top because of an unusually high z-index value of 20000. The problem is that when the user wants to sign-out the export button hides the sign-out drop-down menu. Also, while scrolling down, export button goes above the main header of the page. I believe the z-index was set to make sure Export Dropdown menu does not get hidden by the Graph Visualisation Canvas.

Resolution : Setting z-index to 1001 fixes the the issue.

current div : <div class="btn-group pull-right" style="margin-right: 1em !important; z-index: 20000"> proposed change : <div class="btn-group pull-right" style="margin-right: 1em !important; z-index: 1001">

The Bug :

bug 343

Fixed UI :

fixed 343