Hoppa till huvudinnehållet

Kommentarer

3 kommentarer

  • Permanently deleted user
    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,

     

    Steve

     

     
    0
  • Permanently deleted user
    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,

     

    Steve
    0
  • Permanently deleted user
    Thanks Steve,

     

    I applied it and it works fine with me.

     

     

    Best,

     

    Mariam
    0

Du måste logga in om du vill lämna en kommentar.