diff options
author | Vincent Chan <plus.vincchan@gmail.com> | 2016-06-15 13:11:25 +0200 |
---|---|---|
committer | Vincent Chan <plus.vincchan@gmail.com> | 2016-06-15 13:11:25 +0200 |
commit | 5315a479f35f0b9fedcbb18a8a0272c16b5ea16d (patch) | |
tree | 2a5415c7c3ac083226366b688a8ec2b80eae4b26 | |
parent | aecdcf737f30c8a621576d2843a50aac3815d1ab (diff) | |
download | nextcloud-server-5315a479f35f0b9fedcbb18a8a0272c16b5ea16d.tar.gz nextcloud-server-5315a479f35f0b9fedcbb18a8a0272c16b5ea16d.zip |
fixes responsive/mobile view
-rw-r--r-- | apps/files/css/files.css | 10 | ||||
-rw-r--r-- | apps/files/css/mobile.css | 4 |
2 files changed, 9 insertions, 5 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index bb177db7524..ccf91e377c9 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -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 { diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index bb20c8c3f77..10a9a57332e 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -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; +} + /* don’t require a minimum width for files table */ #body-user #filestable { min-width: initial !important; |