Advertisement
Guest User

Untitled

a guest
Dec 26th, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. /*
  2. Permite truncar o texto das celulas e fixar a largura da tabela
  3. */
  4.  
  5. .table-truncated {
  6. table-layout: fixed;
  7. }
  8.  
  9. .table-truncated td{
  10. white-space: nowrap;
  11. overflow: hidden;
  12. text-overflow: hidden;
  13. }
  14.  
  15. .table.table-truncated-ellipsis td{
  16. text-overflow: ellipsis;
  17. }
  18.  
  19. .cell-truncaded-disabled {
  20. white-space: normal !important;
  21. text-overflow: none !important;
  22. overflow: auto !important;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement