#227 improved styling support for columns

- support for custom css class for entire column (th + td) including
cell values
- demo for responsive columns behaviour
This commit is contained in:
Denys Vuika
2016-06-20 16:28:31 +01:00
parent d26a66f9df
commit 4129210639
7 changed files with 89 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
/* small desktop */
@media all and (max-width: 1200px) {}
/* tablet */
@media all and (max-width: 1024px) {}
/* mobile phone */
@media all and (max-width: 768px) {
alfresco-document-list >>> th.desktop-only .cell-value {
display: none;
}
alfresco-document-list >>> td.desktop-only .cell-value {
display: none;
}
}