MDL-64099 message: Hide scrollbar on section collapsing

This commit is contained in:
Bas Brands 2018-11-22 18:02:19 +01:00 committed by Ryan Wyllie
parent 347fb901a7
commit 4631749c5a
5 changed files with 18 additions and 2 deletions

View File

@ -35,7 +35,6 @@
}}
<div
class="{{$rootclasses}}{{/rootclasses}}"
style="overflow-y: auto"
aria-live="polite"
data-region="lazy-load-list"
data-user-id="{{loggedinuser.id}}"

View File

@ -1345,6 +1345,14 @@ $message-drawer-width: 320px;
border-bottom: 0;
}
}
.section {
.collapse {
overflow-y: auto;
}
.collapsing {
overflow: hidden;
}
}
}
.dir-rtl {

View File

@ -14197,6 +14197,10 @@ a.ygtvspacer:hover {
border-top: 0; }
.message-drawer .list-group .list-group-item:last-child {
border-bottom: 0; }
.message-drawer .section .collapse {
overflow-y: auto; }
.message-drawer .section .collapsing {
overflow: hidden; }
.dir-rtl .message-drawer {
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08); }

View File

@ -1275,7 +1275,9 @@
text-decoration: none;
}
}
.accordion-group .collapse.in {
overflow-y: auto;
}
.message {
p {
margin: 0;

View File

@ -9185,6 +9185,9 @@ a.ygtvspacer:hover {
background-color: #e8e8e8;
text-decoration: none;
}
.message-drawer .accordion-group .collapse.in {
overflow-y: auto;
}
.message-drawer .message p {
margin: 0;
}