diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-10-02 08:07:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 08:07:20 +0200 |
commit | f9c14af9c293c481c73f936c04c90a65f02a8fdf (patch) | |
tree | c9d43eb28b55185bf7d254314278980bf29a75ee | |
parent | e07611ef09580b06cc44f547e0e81b20e1115282 (diff) | |
parent | 6b1663ef2dba2e700a129da1b83cb5fb51279f0c (diff) | |
download | nextcloud-server-f9c14af9c293c481c73f936c04c90a65f02a8fdf.tar.gz nextcloud-server-f9c14af9c293c481c73f936c04c90a65f02a8fdf.zip |
Merge pull request #11524 from nextcloud/fix/11315/filepicker-buttons-nc13
[13] Fixes the move/copy picker buttons
-rw-r--r-- | apps/files/css/upload.scss | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/apps/files/css/upload.scss b/apps/files/css/upload.scss index 5263a4b0e03..f96f4caf500 100644 --- a/apps/files/css/upload.scss +++ b/apps/files/css/upload.scss @@ -168,12 +168,22 @@ .oc-dialog .fileexists #allfiles + span{ vertical-align: bottom; } + .oc-dialog .oc-dialog-buttonrow { + display: flex; + justify-content: flex-end; width:100%; text-align:right; -} -.oc-dialog .oc-dialog-buttonrow .cancel { - float:left; + + button { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } + + .cancel { + float:left; + } } .highlightUploaded { |