view Applications/StoneWebViewer/WebApplication/app-fixes.css @ 1861:9290d2916150

SeriesList: order series by SeriesNumber + hide non displayable series
author Alain Mazy <am@osimis.io>
date Tue, 21 Sep 2021 12:44:40 +0200
parents 59fc37c10cfa
children b180233143ae
line wrap: on
line source

/* https://stackoverflow.com/a/16863182/881731 */
.tooltip {
    position: fixed;
}


/* The following fixes the layout if Bootstrap CSS is not used */

/**
 *,
 *::before,
 *::after {
box-sizing: border-box;
}
**/

.wvInfoScreen {
    width: 100%;
    height: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.wvInfoPopup {
    background-color: black;
    border: white;
    border-style: solid;
    border-radius: 5px;
    border-width: 2px;
    padding: 20px;
}

.wvInfoPopupCloseButton {
    background-color: gray;
    border: none;
    border-radius: 5px;
    padding: 7px;
}