adding ellipsis class in order to cut off text using '...'

pull/41/head
Romano Licker 13 years ago
parent 65d485dbde
commit a0af882d27
  1. 10
      public/stylesheets/application.css

@ -2612,3 +2612,13 @@ Additional wiki styles
height:1px; height:1px;
overflow:hidden; overflow:hidden;
} }
/* Cut of text with '...' - working on all major browsers and IE6+
* not working for Firefox < 7 */
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
}

Loading…
Cancel
Save