Removed simplestatemanager, use @media queries

This commit is contained in:
djmaze 2020-09-20 12:33:33 +02:00
parent 6bffc452b0
commit e1d3a143f4
9 changed files with 19 additions and 57 deletions

View file

@ -188,8 +188,8 @@ html:not(.rl-left-panel-disabled) #rl-left.resizable > .resizer,
// -webkit-overflow-scrolling: touch;
}
html.ssm-state-desktop-large {
/* desktop-large */
@media screen and (min-width: 1401px) {
#rl-left {
width: @rlLeftWidth + 20;
}
@ -211,8 +211,8 @@ html.ssm-state-desktop-large {
}
}
html.ssm-state-desktop {
/* desktop */
@media screen and (min-width: 1000px) and (max-width: 1400px) {
#rl-left {
width: @rlLeftWidth;
}
@ -234,8 +234,8 @@ html.ssm-state-desktop {
}
}
html.ssm-state-tablet, html.ssm-state-mobile {
/* mobile and tablet */
@media screen and (max-width: 999px) {
#rl-left {
width: 155px;
}
@ -267,8 +267,8 @@ html.ssm-state-tablet, html.ssm-state-mobile {
}
}
html.ssm-state-tablet {
/* tablet */
@media screen and (min-width: 768px) and (max-width: 999px) {
.b-contacts-content.modal {
width: 800px;
}