diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-26 11:05:46 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-26 11:05:51 +0200 |
commit | 84b41b3a4b36e873548a3459dad4959ea99d4cd0 (patch) | |
tree | a76cc654f215018ae6528d3d6532221100553237 /core/css | |
parent | 37adf6df0174c03490aef23df535b1fc1672fcf1 (diff) | |
download | nextcloud-server-84b41b3a4b36e873548a3459dad4959ea99d4cd0.tar.gz nextcloud-server-84b41b3a4b36e873548a3459dad4959ea99d4cd0.zip |
fix layout for multiline buttons which are <a class='button'>
Diffstat (limited to 'core/css')
-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; } - |