Skip to content

Instantly share code, notes, and snippets.

@vluzrmos
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vluzrmos/24bff0f009f6251a11d3 to your computer and use it in GitHub Desktop.
Save vluzrmos/24bff0f009f6251a11d3 to your computer and use it in GitHub Desktop.
Estende as funcionalidades do Twitter Boostrap
/*
Permite truncar o texto das celulas e fixar a largura da tabela
*/
.table-truncated {
table-layout: fixed;
}
.table-truncated td{
white-space: nowrap;
overflow: hidden;
text-overflow: hidden;
}
.table-truncated-ellipsis td{
text-overflow: ellipsis;
}
.cell-truncaded-disabled {
white-space: normal !important;
text-overflow: none !important;
overflow: auto !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment