fixes responsive/mobile view

This commit is contained in:
Vincent Chan 2016-06-15 13:11:25 +02:00
parent aecdcf737f
commit 5315a479f3
2 changed files with 9 additions and 5 deletions

View File

@ -73,16 +73,16 @@
}
.file-drag, .file-drag #filestable tbody tr, .file-drag #filestable tbody tr:hover {
transition: background-color 0.3s ease;
background-color: rgb(179, 230, 255);
transition: background-color 0.3s ease!important;
background-color: rgb(179, 230, 255)!important;
}
.app-files #app-content.dir-drop, .file-drag #filestable tbody tr{
background-color: rgba(0, 0, 0, 0);
.app-files #app-content.dir-drop, .file-drag #filestable tbody tr, .file-drag #filestable tbody tr:hover{
background-color: rgba(0, 0, 0, 0)!important;
}
.app-files #app-content.dir-drop #filestable tbody tr.dropping-to-dir{
background-color: rgb(179, 230, 255);
background-color: rgb(179, 230, 255)!important;
}
.dropping-to-dir .thumbnail {

View File

@ -1,5 +1,9 @@
@media only screen and (max-width: 768px) {
.app-files #app-content.dir-drop{
background-color: rgba(255, 255, 255, 1)!important;
}
/* dont require a minimum width for files table */
#body-user #filestable {
min-width: initial !important;