Merge pull request #195 from ZmagoD/zd_SCI_532

add word wrapping to notifications dropdown [fixes SCI-532]
This commit is contained in:
Zmago Devetak 2016-10-05 14:54:10 +02:00 committed by GitHub
commit c547d8a07a

View file

@ -101,13 +101,20 @@ table {
} }
} }
@media(max-width:450px) {
.dropdown-notifications {
width: 100%;
}
}
.dropdown-notifications { .dropdown-notifications {
max-height: 500px; max-height: 500px;
min-width: 450px;
overflow-x: hidden; overflow-x: hidden;
overflow-y: scroll; overflow-y: scroll;
padding-bottom: 0; padding-bottom: 0;
padding-top: 0; padding-top: 0;
width: 450px;
word-wrap: break-word;
.notification { .notification {
border-bottom: 1px solid $color-alto; border-bottom: 1px solid $color-alto;