Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-30 20:34:24 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-30 20:34:24 +0400
commite0d7de6c203cc937809dd90f3458b9e837fda667 (patch)
treeda1e17845ed79c417ae929c4a777d3d77e8ec43e /css
parent9cf3d930bc12dedfe921d01bf7034678d42f99d0 (diff)
hide search function on mobile to save space in breadcrumb bar
Diffstat (limited to 'css')
-rw-r--r--css/mobile.css11
1 files changed, 11 insertions, 0 deletions
diff --git a/css/mobile.css b/css/mobile.css
new file mode 100644
index 0000000..081c58c
--- /dev/null
+++ b/css/mobile.css
@@ -0,0 +1,11 @@
+@media only screen and (max-width: 768px) {
+
+
+/* hide search function on mobile to prevent wrap of elements */
+#editorsearchval,
+#editor_save+label {
+ display: none !important;
+}
+
+
+} \ No newline at end of file