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 @@ ...@@ -717,11 +717,10 @@
cursor: pointer; } cursor: pointer; }
#conversejs #converse-roster .roster-contacts { #conversejs #converse-roster .roster-contacts {
margin: 0; margin: 0;
max-height: 195px; max-height: 100%;
max-height: calc(100% - 26px);
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
padding-bottom: 15px; } padding-bottom: 41px; }
#conversejs #converse-roster .group-toggle { #conversejs #converse-roster .group-toggle {
color: #6C4C44; color: #6C4C44;
display: block; display: block;
......
...@@ -769,11 +769,10 @@ ...@@ -769,11 +769,10 @@
} }
.roster-contacts { .roster-contacts {
margin: 0; margin: 0;
max-height: 195px; max-height: 100%;
max-height: calc(100% - 26px);
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
padding-bottom: 15px; padding-bottom: 41px;
} }
.group-toggle { .group-toggle {
color: $text-color; 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