diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-04-27 10:04:51 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-04-27 10:04:51 +0200 |
commit | 802f818c2770b8b52d050e8fbc7562295f995445 (patch) | |
tree | f6bb7cb949072d52e82d4c91808bf4d9a53dba44 /core | |
parent | e58029f8ad9ed4ddb1a68ea91e76e6a8d749fe27 (diff) | |
parent | 84b41b3a4b36e873548a3459dad4959ea99d4cd0 (diff) | |
download | nextcloud-server-802f818c2770b8b52d050e8fbc7562295f995445.tar.gz nextcloud-server-802f818c2770b8b52d050e8fbc7562295f995445.zip |
Merge pull request #15875 from owncloud/multiline-buttons
fix layout for multiline buttons which are <a class='button'>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 4cf5e4e18ca..aeca3b78234 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -213,6 +213,10 @@ input[type="submit"] img, input[type="button"] img, button img, .button img { cu border: none; box-shadow: none; } +/* fix layout for multiline buttons which are <a class="button"> */ +.button { + display: inline-block; +} /* disabled input fields and buttons */ input:disabled, input:disabled:hover, input:disabled:focus, @@ -1061,4 +1065,3 @@ fieldset.warning legend + p, fieldset.update legend + p { @-ms-viewport { width: device-width; } - |