From 50a7175ee948707ea089e61db8c2405005818fc4 Mon Sep 17 00:00:00 2001 From: Christian Scherm Date: Tue, 9 Jun 2020 12:30:30 +0200 Subject: [PATCH] Fix the alignment of the cancel button (public uploads) --- apps/files/css/upload.css | 4 ++-- changelog/unreleased/37504 | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 changelog/unreleased/37504 diff --git a/apps/files/css/upload.css b/apps/files/css/upload.css index f0ffb9ac99e0..e7ba0886f787 100644 --- a/apps/files/css/upload.css +++ b/apps/files/css/upload.css @@ -39,7 +39,7 @@ } #uploadprogresswrapper > input[type='button'] { height: 36px; - margin-left: 3px; + margin: 0 0 0 3px; } #uploadprogressbar { position:relative; @@ -64,7 +64,7 @@ font-weight: normal; } #uploadprogressbar .label.inner { - color:white; + color:white; position: absolute; display: block; width: 200px; diff --git a/changelog/unreleased/37504 b/changelog/unreleased/37504 new file mode 100644 index 000000000000..ec87df35ff75 --- /dev/null +++ b/changelog/unreleased/37504 @@ -0,0 +1,6 @@ +Bugfix: Align the cancel button on public uploads + +The cancel button on the public upload progress bar was not aligned. +The alignment has been corrected. + +https://github.com/owncloud/core/pull/37504