58 lines
907 B
Plaintext
58 lines
907 B
Plaintext
@import "uwt-button-container.less";
|
|
@import "uwt-formview.less";
|
|
@import "uwt-header.less";
|
|
@import "uwt-layout.less";
|
|
@import "uwt-panel.less";
|
|
@import "uwt-x-select2.less";
|
|
|
|
@media(min-width: 1000px)
|
|
{
|
|
.uwt-mobile-only
|
|
{
|
|
display: none;
|
|
}
|
|
}
|
|
@media(max-width: 1000px)
|
|
{
|
|
.uwt-mobile-hidden
|
|
{
|
|
display: none;
|
|
}
|
|
.uwt-mobile-overlay
|
|
{
|
|
/* like .uwt-mobile-fullscreen, except initially hidden - add .uwt-visible to show */
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
|
|
transition: all 0.3s;
|
|
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
z-index: 200;
|
|
}
|
|
.uwt-mobile-overlay.uwt-visible
|
|
{
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.uwt-mobile-fullscreen
|
|
{
|
|
/* like .uwt-mobile-overlay, except always visible */
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
}
|
|
|
|
div.login-container
|
|
{
|
|
margin-top: 0px !important;
|
|
width: auto !important;
|
|
}
|
|
|
|
} |