diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-11-04 15:32:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 15:32:21 +0100 |
commit | 8f14403a9cc3fe1758bb29be2e38240bcc4ad9e4 (patch) | |
tree | 8de709fab30ef2c87faabf9eccd8cb771d39225d | |
parent | 1f46776b3aa9a6dca1c605bcef38eb9c364757c8 (diff) | |
parent | 8cf7c63a7120f9a7c59e38451fb28d4fe15dcffb (diff) | |
download | nextcloud-server-8f14403a9cc3fe1758bb29be2e38240bcc4ad9e4.tar.gz nextcloud-server-8f14403a9cc3fe1758bb29be2e38240bcc4ad9e4.zip |
Merge pull request #23897 from nextcloud/bugfix/23236
Move help to separate stylesheet
-rw-r--r-- | apps/settings/css/help.css | 12 | ||||
-rw-r--r-- | apps/settings/css/settings.scss | 14 | ||||
-rw-r--r-- | apps/settings/templates/help.php | 2 |
3 files changed, 13 insertions, 15 deletions
diff --git a/apps/settings/css/help.css b/apps/settings/css/help.css new file mode 100644 index 00000000000..248647bef41 --- /dev/null +++ b/apps/settings/css/help.css @@ -0,0 +1,12 @@ +.help-includes { + overflow: hidden !important; +} + +.help-iframe { + width: 100%; + height: 100%; + margin: 0; + padding: 0; + border: 0; + overflow: auto; +} diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index a4036a624e0..cc798868c53 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -1353,20 +1353,6 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; } -/* HELP */ -.help-includes { - overflow: hidden !important; -} - -.help-iframe { - width: 100%; - height: 100%; - margin: 0; - padding: 0; - border: 0; - overflow: auto; -} - #postsetupchecks { ul { margin-left: 44px; diff --git a/apps/settings/templates/help.php b/apps/settings/templates/help.php index 045f45d5d8a..746338da3fc 100644 --- a/apps/settings/templates/help.php +++ b/apps/settings/templates/help.php @@ -1,5 +1,5 @@ <?php -\OC_Util::addStyle('settings', "settings"); +\OC_Util::addStyle('settings', 'help'); ?> <div id="app-navigation"> <ul> |