diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-05-13 11:36:31 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-05-13 11:36:31 +0200 |
commit | 541495b1b5910935150f75d6208a25728520fd93 (patch) | |
tree | ee6df32ba27e215ace03e8ddcd32e1169ef2a56c | |
parent | 14e568b13c7d767e5c9011254392969ee10cf444 (diff) | |
download | nextcloud-server-541495b1b5910935150f75d6208a25728520fd93.tar.gz nextcloud-server-541495b1b5910935150f75d6208a25728520fd93.zip |
Dont use absolute positioning for buttonrow
-rw-r--r-- | core/css/jquery.ocdialog.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index 4dccba2d0c5..a1221137bc4 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -24,11 +24,12 @@ } .oc-dialog-buttonrow { background: white; - position: absolute; - bottom: 15px; - right: 15px; + float: right; + position: relative; + bottom: 0; display: block; margin-top: 10px; + width: 100%; } .oc-dialog-close { |