diff options
author | Anika Henke <anika@selfthinker.org> | 2015-07-26 15:06:21 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2015-07-26 15:06:21 +0100 |
commit | 6439cee6ee86a156a7a138021521f579ef444b80 (patch) | |
tree | 56bbad12a63f1b1022ee0b6c3a3c58abb3d6962d /lib/tpl | |
parent | e7aa4a376b81e5ae9ee069215afc1bf42cbbf982 (diff) | |
parent | ec2b4bab83a5eb6ddcdb41853d311b99b71c6f86 (diff) | |
download | rpg-6439cee6ee86a156a7a138021521f579ef444b80.tar.gz rpg-6439cee6ee86a156a7a138021521f579ef444b80.tar.bz2 |
Merge pull request #1163 from splitbrain/styler
Template Style Dialog Plugin
Diffstat (limited to 'lib/tpl')
-rw-r--r-- | lib/tpl/dokuwiki/css/_admin.css | 3 | ||||
-rw-r--r-- | lib/tpl/dokuwiki/lang/en/lang.php | 12 | ||||
-rw-r--r-- | lib/tpl/dokuwiki/lang/en/style.txt | 4 |
3 files changed, 19 insertions, 0 deletions
diff --git a/lib/tpl/dokuwiki/css/_admin.css b/lib/tpl/dokuwiki/css/_admin.css index a9518d0ed..bdde006e0 100644 --- a/lib/tpl/dokuwiki/css/_admin.css +++ b/lib/tpl/dokuwiki/css/_admin.css @@ -39,6 +39,9 @@ .dokuwiki ul.admin_tasks li.admin_config { background-image: url(../../images/admin/config.png); } +.dokuwiki ul.admin_tasks li.admin_styling { + background-image: url(../../images/admin/styling.png); +} .dokuwiki ul.admin_tasks li.admin_revert { background-image: url(../../images/admin/revert.png); } diff --git a/lib/tpl/dokuwiki/lang/en/lang.php b/lib/tpl/dokuwiki/lang/en/lang.php new file mode 100644 index 000000000..b7b3e7fa1 --- /dev/null +++ b/lib/tpl/dokuwiki/lang/en/lang.php @@ -0,0 +1,12 @@ +<?php + +// style.ini values + +$lang['__background_site__'] = 'Color for the very background (behind the content box)'; +$lang['__link__'] = 'The general link color'; +$lang['__existing__'] = 'The color for links to existing pages'; +$lang['__missing__'] = 'The color for links to non-existing pages'; +$lang['__site_width__'] = 'The width of the full site (can be any length unit: %, px, em, ...)'; +$lang['__sidebar_width__'] = 'The width of the sidebar, if any (can be any length unit: %, px, em, ...)'; +$lang['__tablet_width__'] = 'Below screensizes of this width, the site switches to tablet mode'; +$lang['__phone_width__'] = 'Below screensizes of this width, the site switches to phone mode'; diff --git a/lib/tpl/dokuwiki/lang/en/style.txt b/lib/tpl/dokuwiki/lang/en/style.txt new file mode 100644 index 000000000..7bf3e1a82 --- /dev/null +++ b/lib/tpl/dokuwiki/lang/en/style.txt @@ -0,0 +1,4 @@ +If you want to adjust the logo, simply use the Media Manager to upload a ''logo.png'' into the ''wiki'' or the root namespace and it +will be automatically used. You can also upload a ''favicon.ico'' there. If you use a closed +wiki it is recommended to make the ''wiki'' (or root) namespace world readable in the ACL settings or +your logo is not shown to not logged in users. |