diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-31 17:35:32 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-31 17:35:32 +0200 |
commit | 79305a0476a42cc0068eb77320553f2d26dada28 (patch) | |
tree | 66e0f46b944574304d117c52ba7a40f5e8c40340 /core | |
parent | b9468825eb60a8dc7f4ef0f3045a2571fa7475a1 (diff) | |
download | nextcloud-server-79305a0476a42cc0068eb77320553f2d26dada28.tar.gz nextcloud-server-79305a0476a42cc0068eb77320553f2d26dada28.zip |
also fix filepicker for smaller screen sizes
Diffstat (limited to 'core')
-rw-r--r-- | core/css/mobile.css | 9 | ||||
-rw-r--r-- | core/js/oc-dialogs.js | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 21090d08cb7..0310b0228e2 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -152,6 +152,15 @@ table.multiselect thead { } +/* do not show dates in filepicker */ +#oc-dialog-filepicker-content .filelist .date { + display: none; +} +#oc-dialog-filepicker-content .filelist .filename { + max-width: 80%; +} + + /* fix controls bar jumping when navigation is slid out */ .snapjs-left #app-navigation-toggle, .snapjs-left #controls { diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 9920cc58e23..9b767930c10 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -206,7 +206,7 @@ var OCdialogs = { self.$filePicker.ocdialog({ closeOnEscape: true, - width: (4/9)*$(document).width(), + width: (4/5)*$(document).width(), height: 420, modal: modal, buttons: buttonlist, |