paraview-lite
Version:
Lite ParaView client for Scientific Visualization on the Web
61 lines (52 loc) • 954 B
CSS
.appContent {
/* need a fixed height of arbitrary value
* so the vtk viewers don't grow too much in
* height when resizing. */
height: 0;
}
/* set vuetify-specific wrapper to contain our overlay */
:global(.content--wrap) {
position: relative;
}
/* vuetify overrides */
.toolbarButton {
min-width: 48px;
margin: 0;
height: inherit;
}
.toolbarButton span {
margin-left: 4px;
}
.overlay {
position: absolute;
z-index: 5;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
user-select: none;
visibility: hidden;
opacity: 0;
transition: opacity 100ms, visibility 0 100ms;
}
.overlayVisible {
opacity: 1;
visibility: visible;
transition-delay: 0s;
}
.overlayText {
position: relative;
top: 45%;
transform: translateY(-50%);
width: 80%;
margin: auto;
}
.noTransition {
transition: none;
}
.aboutIcon {
width: 100%;
max-height: 80px;
}