GVH2.7: Clicking some tool gets the interface dark;
Clicking some tool gets the interface dark,
For example, if the “Export Map” tool is clicked, then the interface gets dark (see below).
_img_ alt="User-added image" src="https://latitudegeo--c.na53.content.force.com/servlet/rtaImage?eid=90660000000TSlF&feoid=Body&refid=0EM60000000M1NO" _/_img_
Is there a way to avoid this behavior?
Thank you
Best
Lubna
0
-
Hi Lubna -
You can alter the styling of that modal's background through the common.css file in the Viewer directory. The complete path should be "Viewer\Resources\Styles\common.css".
The element you need to change is ".modal-overlay.active". This element allows you to change both the background's color and its opacity.
In the example below, I have set the opacity to 0 in order to render the modal background invisible:
.modal-overlay.active {
background-color: #000000;
opacity: 0.75;
filter: alpha(opacity=75);
}
Please let me know if you need any more help with this styling.
Regards,
Steve0 -
Oops...disregard the sample configuration from my first comment.
This was my intended configuration:
.modal-overlay.active {
background-color: #000000;
opacity: 0;
filter: alpha(opacity=0); }
Regards,
Steve0 -
Thanks Steve,
I applied it and it works fine with me.
Best,
Mariam0
Du måste logga in om du vill lämna en kommentar.
Kommentarer
3 kommentarer