diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-07-17 16:02:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-17 16:02:20 +0200 |
commit | 682f7b616aaaaf180f4849f0f585eceb52e441ba (patch) | |
tree | a25fcfefa43fd0b66db04ef347362c0dadab17f4 /core/css | |
parent | ee11fee93b212497dea1a2af927e984f2db8bf65 (diff) | |
parent | c90d7c15e98b35ae98c6a08bc92271348c3db72e (diff) | |
download | nextcloud-server-682f7b616aaaaf180f4849f0f585eceb52e441ba.tar.gz nextcloud-server-682f7b616aaaaf180f4849f0f585eceb52e441ba.zip |
Merge pull request #10274 from nextcloud/bugfix/10094/filepicker-buttons-safari
Fix filepicker button layout on safari
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/jquery.ocdialog.scss | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/core/css/jquery.ocdialog.scss b/core/css/jquery.ocdialog.scss index 991ef8495ea..775393406ff 100644 --- a/core/css/jquery.ocdialog.scss +++ b/core/css/jquery.ocdialog.scss @@ -32,6 +32,10 @@ background-image: linear-gradient(rgba(255, 255, 255, 0.0), var(--color-main-background)); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; + clear: both; + button { + display: inline-block; + } } /* align primary button to right, other buttons to left */ .oc-dialog-buttonrow.twobuttons button:nth-child(1) { @@ -47,14 +51,6 @@ .oc-dialog-buttonrow.onebutton button { float: right; } -.oc-dialog-buttonrow:after { - visibility: hidden; - display: block; - font-size: 0; - content: " "; - clear: both; - height: 0; -} .oc-dialog-close { position: absolute; |