Project

General

Profile

« Previous | Next » 

Revision 60853

[Library | Trunk]: Add css class to break all words

View differences:

modules/uoa-services-library/trunk/ng-openaire-library/src/assets/library-css/utils.scss
62 62
  text-overflow: ellipsis;
63 63
}
64 64

  
65
.multi-line-ellipsis.line-1 p {
66
  -webkit-line-clamp: 1;
67
}
68

  
65 69
.multi-line-ellipsis.lines-2 p {
66 70
  -webkit-line-clamp: 2;
67 71
}
......
131 135
.cursor-default {
132 136
  cursor: default !important;
133 137
}
138

  
139
.custom-break {
140
  overflow-wrap: break-word;
141
  word-wrap: break-word;
142
  -ms-word-break: break-all;
143
  word-break: break-all;
144
  -ms-hyphens: auto;
145
  -moz-hyphens: auto;
146
  -webkit-hyphens: auto;
147
  hyphens: auto;
148

  
149
}

Also available in: Unified diff