All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gwt.material.design.addins.client.window.resources.css.window.css Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
/** Window Modal **/
.window-overlay{
    position: fixed;
    z-index: 999;
    top: -100px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 125%;
    width: 100%;
    background: rgba(0,0,0,0.3);
    will-change: opacity;
    visibility: hidden;
    opacity: 0;
}

.window-overlay .window{
    position: fixed;
    left: 0;
    right: 0;
    top: 10%;
    background-color: #fafafa;
    padding: 0;
    max-height: 80%;
    width: 70%;
    margin: auto;
    overflow: hidden;
    border-radius: 2px;
    will-change: top, opacity;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    border-radius: 4px;
    transition: 150ms all;
    -moz-transition: 150ms all;
    -webkit-transition: 150ms all;
}

.window-overlay .window .window-toolbar{
    background-color: #2196f3;
    color: #fff;
    overflow: hidden;
    padding: 8px;
}

.window .window-title{
    color: #fff;
    font-size: 1.1em;
    float: left;
}

.window .window-action{
    font-size: 16px;
    float: right;
    margin-left: 12px;
}

.window.maximize{
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-height: 100% !important;
    transform: translate(0px ,0px) !important;
    -webkit-transform: translate(0px ,0px) !important;
    -moz-transform: translate(0px ,0px) !important;
    -webkit-transition:width 200ms ease-in-out, max-height 500ms ease-in-out;
    -moz-transition:width 200ms ease-in-out, max-height 500ms ease-in-out;
    -o-transition:width 200ms ease-in-out, max-height 500ms ease-in-out;
    transition:width 200ms ease-in-out, max-height 500ms ease-in-out;
}

.window-overlay.open{
    visibility: visible !important;
    opacity: 1 !important;
}

.window-overlay .window .content{
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .window-content{
        width: 80% !important;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy