misc.less 351 B

12345678910111213141516171819
  1. .truncate {
  2. max-width: 100%;
  3. display: block;
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. white-space: nowrap;
  7. }
  8. .break-word {
  9. /* These are technically the same, but we have to use both */
  10. overflow-wrap: break-word;
  11. word-wrap: break-word;
  12. -ms-word-break: break-all;
  13. word-break: break-word;
  14. }
  15. .no-border {
  16. border: 0 !important;
  17. }