1
0
Fork 0

fixed display bug when a notification title is too long, optimized css for notifications

This commit is contained in:
Heiko Kernbach 2014-10-10 11:59:55 +02:00
parent 8ea7a44bd3
commit 144c8b43e1
2 changed files with 15 additions and 1 deletions

View File

@ -34,11 +34,19 @@
button {
@extend %pull-right;
margin-right: 5px;
margin-top: 5px;
}
.notificationItem {
color: $c-black;
.notificationItemTitle {
max-width: 165px;
overflow-wrap: break-word;
white-space: normal;
word-wrap: break-word;
}
.notificationItemTitle:hover {
color: #000;
cursor: default;

View File

@ -4596,9 +4596,15 @@ pre.gv-object-view {
width: 155px;
word-wrap: break-word; }
.fixedDropdown button {
margin-right: 5px; }
margin-right: 5px;
margin-top: 5px; }
.fixedDropdown .notificationItem {
color: #000; }
.fixedDropdown .notificationItem .notificationItemTitle {
max-width: 165px;
overflow-wrap: break-word;
white-space: normal;
word-wrap: break-word; }
.fixedDropdown .notificationItem .notificationItemTitle:hover {
color: #000;
cursor: default; }