summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/css
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-02-05 10:52:25 +0100
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-02-05 10:52:25 +0100
commit615f0c4a1c8cf5f8129064124f2d306192ed27be (patch)
treeaf542859706ac02812a8a4db98c35ccfd563dfb5 /apps/files_sharing/css
parenta096f19bb23d676456c91862e3d84f3a8d8d894b (diff)
downloadnextcloud-server-615f0c4a1c8cf5f8129064124f2d306192ed27be.tar.gz
nextcloud-server-615f0c4a1c8cf5f8129064124f2d306192ed27be.zip
first mobile style rules, hide extra columns in files view and scroll header
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r--apps/files_sharing/css/mobile.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css
new file mode 100644
index 00000000000..e29760b794b
--- /dev/null
+++ b/apps/files_sharing/css/mobile.css
@@ -0,0 +1,18 @@
+@media only screen and (max-width: 600px) {
+
+/* make header and controls bar scroll up for more view of content on small screens */
+#header,
+#controls {
+ position: absolute;
+}
+
+/* hide size and date columns */
+table th#headerSize,
+table td.filesize,
+table th#headerDate,
+table td.date {
+ display: none;
+}
+
+
+} \ No newline at end of file