arles-2020: customize user documents' elements displayed in mobile (#40758)

This commit is contained in:
Serghei Mihai 2020-03-19 10:16:12 +01:00
parent 3bdfd0fecf
commit a2c23d39bd
1 changed files with 16 additions and 0 deletions

View File

@ -426,3 +426,19 @@ div.searchcell {
}
}
}
div#user-files {
@media screen and ($max-mobile-viewport) {
tr::before {
display: none;
}
td.action-column {
padding: 0.3em 0.5em;
}
}
@media screen and (max-width: 600px) {
th.size, td.size, th.created, td.created {
display: none;
}
}
}