Commit d8a9dd5a authored by JC Brand's avatar JC Brand

Work around a IE10 bug.

IE 10 doesn't appear to properly handle calc(100% - 26px), breaking scrolling
of contacts.
parent f2edf0de
......@@ -717,11 +717,10 @@
cursor: pointer; }
#conversejs #converse-roster .roster-contacts {
margin: 0;
max-height: 195px;
max-height: calc(100% - 26px);
max-height: 100%;
overflow-x: hidden;
overflow-y: auto;
padding-bottom: 15px; }
padding-bottom: 41px; }
#conversejs #converse-roster .group-toggle {
color: #6C4C44;
display: block;
......
......@@ -769,11 +769,10 @@
}
.roster-contacts {
margin: 0;
max-height: 195px;
max-height: calc(100% - 26px);
max-height: 100%;
overflow-x: hidden;
overflow-y: auto;
padding-bottom: 15px;
padding-bottom: 41px;
}
.group-toggle {
color: $text-color;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment