diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-08 09:28:35 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-08 09:28:35 +0200 |
commit | 8da44f2a5be6e768fd554c9e8f5b981997e869db (patch) | |
tree | f74b64db445814827f2882ab4715a86b7e3e14b0 | |
parent | 20fc4b8b533407c7282bf1634e90f3a52e5619f0 (diff) | |
parent | 1494b333c5d7116875b941ea0ae47c4462ec7c24 (diff) | |
download | nextcloud-server-8da44f2a5be6e768fd554c9e8f5b981997e869db.tar.gz nextcloud-server-8da44f2a5be6e768fd554c9e8f5b981997e869db.zip |
Merge pull request #9506 from owncloud/fix-fielset-legends
specify CSS rule for warning & update fieldsets
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index ed8c84b113c..40c1622ca26 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -855,11 +855,11 @@ div.crumb:active { } /* LEGACY FIX only - do not use fieldsets for settings */ -fieldset legend { - top: 20px; +fieldset.warning legend, fieldset.update legend { + top: 18px; position: relative; } -fieldset legend + p { +fieldset.warning legend + p, fieldset.update legend + p { margin-top: 12px; } |