2018-07-21 14:28:23 +03:00
|
|
|
|
|
|
|
#app-sidebar {
|
|
|
|
position: fixed !important;
|
|
|
|
}
|
|
|
|
#app-content {
|
2018-11-08 20:19:52 +03:00
|
|
|
min-width: $navigation-width !important;
|
2018-11-07 21:51:00 +03:00
|
|
|
/**
|
|
|
|
* set min height so the container will grow in IE11
|
|
|
|
* https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11
|
|
|
|
*/
|
|
|
|
min-height: calc(100vh - 50px);
|
2018-07-21 14:28:23 +03:00
|
|
|
}
|
|
|
|
#app-sidebar.disappear {
|
|
|
|
right: -$sidebar-max-width !important;
|
2018-12-18 18:33:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* flex align center doesn't apply to absolute on ie
|
|
|
|
* we need to manually set it
|
|
|
|
*/
|
|
|
|
#appmenu li {
|
|
|
|
|
|
|
|
span {
|
|
|
|
left: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover a + span,
|
|
|
|
a:focus + span,
|
|
|
|
&:hover span,
|
|
|
|
&:focus span,
|
|
|
|
a:focus span {
|
|
|
|
width: 100%; // disable animation
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
|
|
|
|
#show,
|
|
|
|
#show + label {
|
|
|
|
display: none;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header .menu,
|
|
|
|
.header-left #navigation,
|
|
|
|
.ui-datepicker,
|
|
|
|
.ui-timepicker.ui-widget,
|
|
|
|
.tooltip-inner {
|
|
|
|
box-shadow: 0 1px 10px var(--color-box-shadow);
|
|
|
|
}
|