notification-menu:包含通知的长文本

时间:2013-12-11 10:21:12

标签: jquery-plugins

我正在使用this plug-in来显示我的网络应用的通知。

有人可以指导我,如何显示长通知消息enter image description here

参考快照:如果输入长信息,则表示无法正常显示。

请指导我。

1 个答案:

答案 0 :(得分: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; */
}
相关问题