2013-12-11 34 views

回答

0

在你的CSS(style_light.css线240)评论这两条线:

.notification-list-item .message { 
    display: block; 
    margin-right: 22px; 
    /* white-space: nowrap; */ 
    overflow: hidden; 
    position: relative; 
    /* text-overflow: ellipsis; */ 

}

Aaaand,在相同的CSS线204评论这个类的高度

.notification-list-item { 
    color: #666; 
    padding: 6px; 
    border-bottom: 1px solid #ddd; 
    border-top: 1px solid #fff; 
    position: relative; 
    cursor: pointer; 
    -webkit-transition: all 0.3s ease; 
    -moz-transition: all 0.3s ease; 
    -o-transition: all 0.3s ease; 
    transition: all 0.3s ease; 
    /* height: 16px; */ 
}