fonteditor/css/util.less
2014-10-06 00:29:40 +08:00

14 lines
231 B
Plaintext

.ellipsis() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ellipsis(@width) when (@width > 0px) {
width: @width;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}