From 90786557a279ffeb2c149b674c4b258249fab66d Mon Sep 17 00:00:00 2001 From: luxick Date: Fri, 30 Jan 2026 11:17:54 +0100 Subject: [PATCH] Change base to be the default DokuWiki template --- COPYING | 339 ----------------- README | 5 - conf/default.php | 8 - conf/metadata.php | 8 - css/_admin.less | 73 ++++ css/_diff.css | 140 +++++++ css/_edit.css | 142 +++++++ css/_fileuploader.css | 107 ++++++ css/_footnotes.css | 31 ++ css/_forms.css | 106 ++++++ css/_imgdetail.css | 38 ++ css/_links.css | 70 ++++ css/_media_fullscreen.css | 541 +++++++++++++++++++++++++++ css/_media_popup.css | 208 ++++++++++ css/_modal.css | 94 +++++ css/_recent.css | 75 ++++ css/_search.less | 204 ++++++++++ css/_tabs.css | 84 +++++ css/_toc.css | 93 +++++ css/{basic.css => basic.less} | 304 ++++++++------- css/content.css | 169 --------- css/content.less | 404 ++++++++++++++++++++ css/design.css | 274 -------------- css/design.less | 364 ++++++++++++++++++ css/includes.css | 4 - css/mobile.css | 78 ---- css/mobile.less | 332 ++++++++++++++++ css/pagetools.less | 124 ++++++ css/print.css | 68 ++-- css/structure.css | 61 --- css/structure.less | 89 +++++ css/tuivision.css | 263 ------------- css/usertools.less | 50 +++ detail.php | 127 ++++--- fonts/Perfect DOS VGA 437 Win.ttf | Bin 82676 -> 0 bytes images/apple-touch-icon.png | Bin 17728 -> 6336 bytes images/button-css.png | Bin 0 -> 297 bytes images/button-donate.gif | Bin 0 -> 187 bytes images/button-dw.png | Bin 0 -> 398 bytes images/button-html5.png | Bin 0 -> 305 bytes images/button-php.gif | Bin 0 -> 207 bytes images/button-rss.png | Bin 0 -> 178 bytes images/dokuwiki.svg | 84 +++++ images/favicon.ico | Bin images/license.txt | 5 + images/logo.png | Bin 0 -> 3744 bytes images/page-background.svg | 8 + images/page-gradient.png | Bin 0 -> 209 bytes images/pagetools-build.php | 121 ++++++ images/pagetools-sprite.png | Bin 0 -> 7759 bytes images/pagetools/00_default.png | Bin 0 -> 494 bytes images/pagetools/01_edit.png | Bin 0 -> 519 bytes images/pagetools/02_create.png | Bin 0 -> 580 bytes images/pagetools/03_draft.png | Bin 0 -> 592 bytes images/pagetools/04_show.png | Bin 0 -> 321 bytes images/pagetools/05_source.png | Bin 0 -> 478 bytes images/pagetools/06_revert.png | Bin 0 -> 462 bytes images/pagetools/07_revisions.png | Bin 0 -> 769 bytes images/pagetools/08_backlink.png | Bin 0 -> 527 bytes images/pagetools/09_subscribe.png | Bin 0 -> 374 bytes images/pagetools/10_top.png | Bin 0 -> 297 bytes images/pagetools/11_mediamanager.png | Bin 0 -> 320 bytes images/pagetools/12_back.png | Bin 0 -> 288 bytes images/pagetools/license.txt | 4 + images/search.png | Bin 0 -> 307 bytes images/toc-arrows.png | Bin 0 -> 225 bytes images/toc-bullet.png | Bin 0 -> 113 bytes images/usertools.png | Bin 0 -> 1428 bytes lang/de/lang.php | 19 + lang/de/settings.php | 7 - lang/de/style.txt | 1 + lang/en/lang.php | 15 +- lang/en/settings.php | 8 - lang/en/style.txt | 5 +- lang/fr/settings.php | 7 - lang/ja/lang.php | 11 - lang/ja/settings.php | 8 - lang/ja/style.txt | 4 - lang/ko/lang.php | 10 - lang/ko/settings.php | 7 - lang/ko/style.txt | 1 - lang/ru/settings.php | 9 - main.php | 185 +++------ mediamanager.php | 21 +- script.js | 116 ++++-- style.ini | 101 +++-- template.info.txt | 14 +- tpl_footer.php | 34 ++ tpl_functions.php | 47 --- tpl_header.php | 88 +++++ 90 files changed, 4205 insertions(+), 1812 deletions(-) delete mode 100644 COPYING delete mode 100644 README delete mode 100644 conf/default.php delete mode 100644 conf/metadata.php create mode 100755 css/_admin.less create mode 100755 css/_diff.css create mode 100755 css/_edit.css create mode 100755 css/_fileuploader.css create mode 100755 css/_footnotes.css create mode 100755 css/_forms.css create mode 100755 css/_imgdetail.css create mode 100755 css/_links.css create mode 100755 css/_media_fullscreen.css create mode 100755 css/_media_popup.css create mode 100755 css/_modal.css create mode 100755 css/_recent.css create mode 100755 css/_search.less create mode 100755 css/_tabs.css create mode 100755 css/_toc.css rename css/{basic.css => basic.less} (56%) mode change 100644 => 100755 delete mode 100644 css/content.css create mode 100755 css/content.less delete mode 100644 css/design.css create mode 100755 css/design.less delete mode 100644 css/includes.css delete mode 100644 css/mobile.css create mode 100755 css/mobile.less create mode 100755 css/pagetools.less mode change 100644 => 100755 css/print.css delete mode 100644 css/structure.css create mode 100755 css/structure.less delete mode 100644 css/tuivision.css create mode 100755 css/usertools.less mode change 100644 => 100755 detail.php delete mode 100644 fonts/Perfect DOS VGA 437 Win.ttf mode change 100644 => 100755 images/apple-touch-icon.png create mode 100755 images/button-css.png create mode 100755 images/button-donate.gif create mode 100755 images/button-dw.png create mode 100755 images/button-html5.png create mode 100755 images/button-php.gif create mode 100755 images/button-rss.png create mode 100755 images/dokuwiki.svg mode change 100644 => 100755 images/favicon.ico create mode 100755 images/license.txt create mode 100755 images/logo.png create mode 100755 images/page-background.svg create mode 100755 images/page-gradient.png create mode 100755 images/pagetools-build.php create mode 100755 images/pagetools-sprite.png create mode 100755 images/pagetools/00_default.png create mode 100755 images/pagetools/01_edit.png create mode 100755 images/pagetools/02_create.png create mode 100755 images/pagetools/03_draft.png create mode 100755 images/pagetools/04_show.png create mode 100755 images/pagetools/05_source.png create mode 100755 images/pagetools/06_revert.png create mode 100755 images/pagetools/07_revisions.png create mode 100755 images/pagetools/08_backlink.png create mode 100755 images/pagetools/09_subscribe.png create mode 100755 images/pagetools/10_top.png create mode 100755 images/pagetools/11_mediamanager.png create mode 100755 images/pagetools/12_back.png create mode 100755 images/pagetools/license.txt create mode 100755 images/search.png create mode 100755 images/toc-arrows.png create mode 100755 images/toc-bullet.png create mode 100755 images/usertools.png create mode 100755 lang/de/lang.php delete mode 100644 lang/de/settings.php create mode 100755 lang/de/style.txt mode change 100644 => 100755 lang/en/lang.php delete mode 100644 lang/en/settings.php mode change 100644 => 100755 lang/en/style.txt delete mode 100644 lang/fr/settings.php delete mode 100644 lang/ja/lang.php delete mode 100644 lang/ja/settings.php delete mode 100644 lang/ja/style.txt delete mode 100644 lang/ko/lang.php delete mode 100644 lang/ko/settings.php delete mode 100644 lang/ko/style.txt delete mode 100644 lang/ru/settings.php mode change 100644 => 100755 main.php mode change 100644 => 100755 mediamanager.php mode change 100644 => 100755 script.js mode change 100644 => 100755 style.ini mode change 100644 => 100755 template.info.txt create mode 100755 tpl_footer.php delete mode 100644 tpl_functions.php create mode 100755 tpl_header.php diff --git a/COPYING b/COPYING deleted file mode 100644 index d159169..0000000 --- a/COPYING +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/README b/README deleted file mode 100644 index 9fb7949..0000000 --- a/README +++ /dev/null @@ -1,5 +0,0 @@ -See template.info.txt for main info -See COPYING for license info - -Notes: -- Default UI font uses the bundled "Perfect DOS VGA 437" from the fonts directory. \ No newline at end of file diff --git a/conf/default.php b/conf/default.php deleted file mode 100644 index 3bbada1..0000000 --- a/conf/default.php +++ /dev/null @@ -1,8 +0,0 @@ - div { + display: inline-block; + position: relative; + margin: 0 0.5em; + } + + div.toggle { + // default closed toggle state + div.current { + cursor: pointer; + max-width: 10em; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + + &::after { + content: '▼'; + font-size: smaller; + color: @ini_text_alt; + } + } + div.changed { + font-weight: bold; + } + ul { + display: none; + position: absolute; + border: 1px solid @ini_border; + background-color: @ini_background; + padding: 0.25em 0.5em; + text-align: left; + min-width: 10em; + max-width: 15em; + max-height: 50vh; + overflow: auto; + z-index: 100; + li { + margin: 0.25em 0; + list-style: none; + + a { + display: block; + } + } + } + + // open toggle state + &.open { + div.current::after { + content: '▲'; + } + + ul { + display: block; + } + } + } + } +} + +[dir=rtl] .search-results-form fieldset.search-form .advancedOptions { + div.toggle ul { + text-align: right; + } +} + + +/*____________ matching pagenames ____________*/ + +.dokuwiki div.search_quickresult { + margin-bottom: 1.4em; + + ul { + padding: 0; + + li { + float: left; + width: 12em; + margin: 0 1.5em; + } + } +} + +[dir=rtl] .dokuwiki div.search_quickresult ul li { + float: right; +} + +/*____________ search results ____________*/ + +.dokuwiki dl.search_results { + margin-bottom: 1.2em; + + /* search heading */ + dt { + font-weight: normal; + margin-bottom: .2em; + } + + /* last modified line */ + dd.meta { + margin: 0 0 .2em 0; + } + + /* search snippet */ + dd.snippet { + color: @ini_text_alt; + background-color: inherit; + margin: 0 0 1.2em 0; + + /* search hit in search results */ + strong.search_hit { + font-weight: normal; + /* color is set in general */ + } + + /* ellipsis separating snippets */ + .search_sep { + color: @ini_text; + background-color: inherit; + } + } +} + +/* AJAX quicksearch popup +********************************************************************/ + +.dokuwiki form.search { + div.no { + position: relative; + } + + /* .JSpopup */ + div.ajax_qsearch { + position: absolute; + top: 0; + left: -13.5em; /* -( width of #qsearch__in + padding of .ajax_qsearch + a bit more ) */ + width: 12em; + padding: 0.5em; + font-size: .9em; + z-index: 20; + text-align: left; + display: none; + + strong { + display: block; + margin-bottom: .3em; + } + + ul { + margin: 0 !important; + padding: 0 !important; + + li { + margin: 0; + padding: 0; + display: block !important; + } + } + } +} + +[dir=rtl] .dokuwiki form.search div.ajax_qsearch { + left: auto; + right: -13.5em; + text-align: right; +} diff --git a/css/_tabs.css b/css/_tabs.css new file mode 100755 index 0000000..507f49e --- /dev/null +++ b/css/_tabs.css @@ -0,0 +1,84 @@ +/** + * This file provides the styles for general tabs. + */ + +.dokuwiki .tabs > ul, +.dokuwiki ul.tabs { + padding: 0; + margin: 0; + overflow: hidden; + position: relative; +} +/* border underneath */ +.dokuwiki .tabs > ul:after, +.dokuwiki ul.tabs:after { + position: absolute; + content: ""; + width: 100%; + bottom: 0; + left: 0; + border-bottom: 1px solid @ini_border; +} + +.dokuwiki .tabs > ul li, +.dokuwiki ul.tabs li { + float: left; + padding: 0; + margin: 0; + list-style: none; +} +[dir=rtl] .dokuwiki .tabs > ul li, +[dir=rtl] .dokuwiki ul.tabs li { + float: right; +} + +.dokuwiki .tabs > ul li a, +.dokuwiki ul.tabs li strong, +.dokuwiki ul.tabs li a { + display: inline-block; + padding: .3em .8em; + margin: 0 0 0 .3em; + background-color: @ini_background_neu; + color: @ini_text; + border: 1px solid @ini_border; + border-radius: .5em .5em 0 0; + position: relative; + z-index: 0; +} +[dir=rtl] .dokuwiki .tabs > ul li a, +[dir=rtl] .dokuwiki ul.tabs li strong, +[dir=rtl] .dokuwiki ul.tabs li a { + margin: 0 .3em 0 0; +} + +.dokuwiki ul.tabs li strong { + font-weight: normal; +} + +.dokuwiki ul.tabs li a:link, +.dokuwiki ul.tabs li a:visited { +} +.dokuwiki .tabs > ul li a:hover, +.dokuwiki .tabs > ul li a:active, +.dokuwiki .tabs > ul li a:focus, +.dokuwiki .tabs > ul li .curid a, +.dokuwiki .tabs > ul .active a, +.dokuwiki ul.tabs li a:hover, +.dokuwiki ul.tabs li a:active, +.dokuwiki ul.tabs li a:focus, +.dokuwiki ul.tabs li.active a, +.dokuwiki ul.tabs li strong { + background-color: @ini_background_alt; + color: @ini_text; + text-decoration: none; + font-weight: normal; +} + +.dokuwiki .tabs > ul li .curid a, +.dokuwiki .tabs > ul li .active a, +.dokuwiki .tabs > ul li .active a, +.dokuwiki ul.tabs li.active a, +.dokuwiki ul.tabs li strong { + z-index: 2; + border-bottom-color: @ini_background_alt; +} diff --git a/css/_toc.css b/css/_toc.css new file mode 100755 index 0000000..469e927 --- /dev/null +++ b/css/_toc.css @@ -0,0 +1,93 @@ +/** + * This file provides styles for the TOC (table of contents), the + * sitemap (?do=index) and backlinks (?do=backlink). + */ + +/* toc +********************************************************************/ + +/* toc container */ +#dw__toc { + float: right; + margin: 0 0 1.4em 1.4em; + width: 12em; + background-color: @ini_background_alt; + color: inherit; +} +[dir=rtl] #dw__toc { + float: left; + margin: 0 1.4em 1.4em 0; +} + +/*____________ toc header ____________*/ + +.dokuwiki h3.toggle { + padding: .2em .5em; + font-weight: bold; +} + +.dokuwiki .toggle strong { + float: right; + margin: 0 .2em; +} +[dir=rtl] .dokuwiki .toggle strong { + float: left; +} + +/*____________ toc list ____________*/ + +#dw__toc > div { + padding: .2em .5em; +} +#dw__toc ul { + padding: 0; + margin: 0; +} +#dw__toc ul li { + list-style: none; + padding: 0; + margin: 0; + line-height: 1.1; +} +#dw__toc ul li div.li { + padding: .15em 0; +} +#dw__toc ul ul { + padding-left: 1em; +} +[dir=rtl] #dw__toc ul ul { + padding-left: 0; + padding-right: 1em; +} +#dw__toc ul ul li { +} +#dw__toc ul li a { +} + +/* in case of toc list jumping one level + (e.g. if heading level 3 follows directly after heading level 1) */ +#dw__toc ul li.clear { +} + + +/* sitemap (and backlinks) +********************************************************************/ + +.dokuwiki ul.idx { + padding-left: 0; +} +[dir=rtl] .dokuwiki ul.idx { + padding-right: 0; +} +.dokuwiki ul.idx li { + list-style-image: url(../../images/bullet.png); +} +.dokuwiki ul.idx li.open { + list-style-image: url(../../images/open.png); +} +.dokuwiki ul.idx li.closed { + list-style-image: url(../../images/closed.png); +} +[dir=rtl] .dokuwiki ul.idx li.closed { + list-style-image: url(../../images/closed-rtl.png); +} diff --git a/css/basic.css b/css/basic.less old mode 100644 new mode 100755 similarity index 56% rename from css/basic.css rename to css/basic.less index 21f1e0b..4644c92 --- a/css/basic.css +++ b/css/basic.less @@ -8,27 +8,19 @@ * @author Anika Henke */ -@font-face { - font-family: "Perfect DOS VGA 437"; - src: url("./fonts/Perfect%20DOS%20VGA%20437%20Win.ttf") format("truetype"); - font-weight: normal; - font-style: normal; - font-display: swap; -} - html { overflow-x: auto; overflow-y: scroll; } html, body { - background-color: __background__; - color: __text__; + color: @ini_text; + background: @ini_background_site url(images/page-gradient.png) top left repeat-x; margin: 0; padding: 0; } body { - font: normal 100%/1.4 "Perfect DOS VGA 437", Frutiger, Calibri, "Myriad Pro", Myriad, "Nimbus Sans L", Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; + font: normal 87.5%/1.4 Arial, sans-serif; /* default font size: 100% => 16px; 93.75% => 15px; 87.5% => 14px; 81.25% => 13px; 75% => 12px */ -webkit-text-size-adjust: 100%; } @@ -36,17 +28,21 @@ body { /*____________ headers ____________*/ +caption, +figcaption, +summary, +legend { + padding: 0; + margin: 0 0 .35em; + line-height: 1.2; +} h1, h2, h3, h4, h5, h6 { - font-family: "Perfect DOS VGA 437", Constantia, Utopia, Lucidabright, Lucida, Georgia, "Nimbus Roman No9 L", serif; font-weight: bold; - color: __text_neu__; - text-align: left; - background-color: inherit; padding: 0; line-height: 1.2; clear: left; /* ideally 'both', but problems with toc */ @@ -61,7 +57,7 @@ h6 { } h1 { - font-size: 2.25em; + font-size: 2em; margin: 0 0 0.444em; } h2 { @@ -86,17 +82,6 @@ h6 { } /* bottom margin = 1 / font-size */ -caption, -figcaption, -summary, -legend { - font-style: italic; - font-weight: normal; - line-height: 1.2; - padding: 0; - margin: 0 0 .35em; -} - /*____________ basic margins and paddings ____________*/ @@ -114,10 +99,11 @@ fieldset, address { margin: 0 0 1.4em 0; /* bottom margin = line-height */ padding: 0; - text-align: left; } -div { +div, +video, +audio { margin: 0; padding: 0; } @@ -143,7 +129,6 @@ dd { [dir=rtl] dd { margin: 0 1.5em 0 0; } - dt { font-weight: bold; margin: 0; @@ -163,24 +148,12 @@ li li { font-size: 100%; } -ul { - list-style: disc outside; -} -ol { - list-style: decimal outside; -} -ol ol { - list-style-type: lower-alpha; -} -ol ol ol { - list-style-type: upper-roman; -} -ol ol ol ol { - list-style-type: upper-alpha; -} -ol ol ol ol ol { - list-style-type: lower-roman; -} +ul { list-style: square outside; } +ol { list-style: decimal outside; } +ol ol { list-style-type: lower-alpha; } +ol ol ol { list-style-type: upper-roman; } +ol ol ol ol { list-style-type: upper-alpha; } +ol ol ol ol ol { list-style-type: lower-roman; } /*____________ tables ____________*/ @@ -189,7 +162,7 @@ table { border-collapse: collapse; empty-cells: show; border-spacing: 0; - border: 1px solid __border__; + border: 1px solid @ini_border; } caption { @@ -205,12 +178,11 @@ td { padding: .3em .5em; margin: 0; vertical-align: top; - border: 1px solid __border__; + border: 1px solid @ini_border; } th { font-weight: bold; - background-color: __background_alt__; - color: inherit; + background-color: @ini_background_alt; text-align: left; } [dir=rtl] th { @@ -221,11 +193,12 @@ th { /*____________ links ____________*/ a { + outline: none; } a:link, a:visited { text-decoration: none; - color: __link__; + color: @ini_link; } a:link:hover, a:visited:hover, @@ -235,29 +208,22 @@ a:link:active, a:visited:active { text-decoration: underline; } -a:link:focus, -a:visited:focus { - outline: 1px dotted; -} -a:link:active, -a:visited:active { - color: #c00; -} /*____________ misc ____________*/ -img, -svg { +img { border-width: 0; vertical-align: middle; color: #666; background-color: transparent; font-style: italic; + object-fit: cover; +} +video { + height: auto; } - img, -svg, object, embed, iframe, @@ -265,41 +231,28 @@ video, audio { max-width: 100%; } - -img, -svg, -video { - height: auto; -} - -iframe { - border-width: 0; - background-color: inherit; -} - -button img, -button svg { +button img { max-width: none; } +table img { + max-width: 50vw; +} hr { - border-style: solid; - border-width: 1px 0 0; - text-align: center; + border-top: solid @ini_border; + border-bottom: solid @ini_background; + border-width: 1px 0; height: 0; - width: 100%; + text-align: center; clear: both; } acronym, abbr { - font-style: normal; -} -acronym[title], -abbr[title] { cursor: help; border-bottom: 1px dotted; text-decoration: none; + font-style: normal; } em acronym, em abbr { @@ -307,7 +260,7 @@ em abbr { } mark { - background: __highlight__; + background-color: @ini_highlight; color: inherit; } @@ -318,21 +271,25 @@ kbd { font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace; /* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */ font-size: 1em; - background-color: __background_alt__; - color: __text__; direction: ltr; text-align: left; + background-color: @ini_background_site; + color: @ini_text; + box-shadow: inset 0 0 .3em @ini_border; + border-radius: 2px; } pre { - border: 1px solid __border__; - padding: 0 .2em; overflow: auto; word-wrap: normal; + border: 1px solid @ini_border; + border-radius: 2px; + box-shadow: inset 0 0 .5em @ini_border; + padding: .7em 1em; } blockquote { padding: 0 .5em; - border: solid __border__; + border: solid @ini_border; border-width: 0 0 0 .25em; } [dir=rtl] blockquote { @@ -360,29 +317,30 @@ small { } wbr { - display: inline-block; + display: inline-block; /* for IE 11 */ } /*____________ forms ____________*/ +/* for all of the form styles, style.ini colours are not used on purpose (except for fieldset border) */ + form { display: inline; margin: 0; padding: 0; } - fieldset { padding: .7em 1em 0; padding: .7rem 1rem; /* for those browsers understanding :last-child */ - border: 1px solid #999; + border: 1px solid @ini_text_alt; } fieldset > :last-child { margin-bottom: 0; } legend { + margin: 0; padding: 0 .1em; } - label { vertical-align: middle; cursor: pointer; @@ -399,65 +357,13 @@ output, meter, progress { font: inherit; - color: inherit; - /* background-color destroys button look */ + font-weight: normal; + color: #333; + background-color: #fff; line-height: normal; margin: 0; vertical-align: middle; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -input, -button, -select, -keygen, -textarea { - padding: .1em; -} -input[type=radio], -input[type=checkbox], -input[type=image], -input.check { - padding: 0; -} - -input[type=submit], -input[type=button], -input[type=reset], -input.button, -button { - cursor: pointer; - overflow: visible; - padding: .1em .4em; -} - -input[disabled], -button[disabled], -select[disabled], -textarea[disabled], -option[disabled], -input[readonly], -button[readonly], -select[readonly], -textarea[readonly] { - cursor: auto; - opacity: .5; -} - -input:focus, -button:focus, -select:focus, -keygen:focus, -textarea:focus { - box-shadow: 0 0 5px #999; - outline: 0; -} -input::-moz-focus-inner, -button::-moz-focus-inner { - border: 0; - padding: 0; + box-sizing: border-box; } select { @@ -471,3 +377,95 @@ option { font-style: normal; font-weight: normal; } +option:checked { + background-color: #ccc; +} + +input, +textarea, +select, +keygen { + border: 1px solid #ccc; + box-shadow: inset 0 0 1px #eee; + border-radius: 2px; +} +input:active, +input:focus, +textarea:active, +textarea:focus, +select:active, +select:focus, +keygen:active, +keygen:focus { + border-color: #999; +} +input[type=radio], +input[type=checkbox], +input[type=image] { + padding: 0; + border-style: none; + box-shadow: none; +} + +/* all types of buttons */ +input[type=submit], +input[type=button], +input[type=reset], +input.button, +a.button, +button, +.qq-upload-button { + color: #333; + background-color: #eee; + background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc4MjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkZGRkYiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNGNEY0RjQiIG9mZnNldD0iMC4zIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0VFRUVFRSIgb2Zmc2V0PSIwLjk5Ii8+PHN0b3Agc3RvcC1jb2xvcj0iI0NDQ0NDQyIgb2Zmc2V0PSIuOTkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnODI0KSIgLz4KPC9zdmc+); + background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 30%, #eeeeee 99%, #cccccc 99%); + border: 1px solid #ccc; + border-radius: 2px; + padding: .1em .5em; + cursor: pointer; +} + +input[type=submit]:hover, +input[type=submit]:active, +input[type=submit]:focus, +input[type=button]:hover, +input[type=button]:active, +input[type=button]:hover, +input[type=reset]:hover, +input[type=reset]:active, +input[type=reset]:hover, +input.button:hover, +input.button:active, +input.button:focus, +a.button:hover, +a.button:active, +a.button:focus, +button:hover, +button:active, +button:focus, +.qq-upload-button:hover { + border-color: #999; + background-color: #ddd; + background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc2NzAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkZGRkYiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNGNEY0RjQiIG9mZnNldD0iMC4zIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0RERERERCIgb2Zmc2V0PSIwLjk5Ii8+PHN0b3Agc3RvcC1jb2xvcj0iI0JCQkJCQiIgb2Zmc2V0PSIuOTkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnNjcwKSIgLz4KPC9zdmc+); + background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 30%, #dddddd 99%, #bbbbbb 99%); +} + +input::-moz-focus-inner, +button::-moz-focus-inner { + border: 0; + padding: 0; +} + +input[disabled], +button[disabled], +select[disabled], +textarea[disabled], +option[disabled], +input[readonly], +button[readonly], +select[readonly], +textarea[readonly] { + cursor: auto; + opacity: .5; + background-color: #eee; +} diff --git a/css/content.css b/css/content.css deleted file mode 100644 index edd8fab..0000000 --- a/css/content.css +++ /dev/null @@ -1,169 +0,0 @@ -/** - * This file provides the main design styles for the page content. - * - * @author Anika Henke - * @author Andreas Gohr - */ - - -/*____________ section indenting ____________ - -.dokuwiki .page h1 {margin-left: 0;} -.dokuwiki .page h2 {margin-left: .666em;} -.dokuwiki .page h3 {margin-left: 1.776em;} -.dokuwiki .page h4 {margin-left: 3em;} -.dokuwiki .page h5 {margin-left: 4.5712em;} -.dokuwiki .page div.level1 {margin-left: 0;} -.dokuwiki .page div.level2 {margin-left: 1em;} -.dokuwiki .page div.level3 {margin-left: 2em;} -.dokuwiki .page div.level4 {margin-left: 3em;} -.dokuwiki .page div.level5 {margin-left: 4em;} - -[dir=rtl] .dokuwiki .page h1 {margin-left: 0; margin-right: 0;} -[dir=rtl] .dokuwiki .page h2 {margin-left: 0; margin-right: .666em;} -[dir=rtl] .dokuwiki .page h3 {margin-left: 0; margin-right: 1.776em;} -[dir=rtl] .dokuwiki .page h4 {margin-left: 0; margin-right: 3em;} -[dir=rtl] .dokuwiki .page h5 {margin-left: 0; margin-right: 4.5712em;} -[dir=rtl] .dokuwiki .page div.level1 {margin-left: 0; margin-right: 0;} -[dir=rtl] .dokuwiki .page div.level2 {margin-left: 0; margin-right: 1em;} -[dir=rtl] .dokuwiki .page div.level3 {margin-left: 0; margin-right: 2em;} -[dir=rtl] .dokuwiki .page div.level4 {margin-left: 0; margin-right: 3em;} -[dir=rtl] .dokuwiki .page div.level5 {margin-left: 0; margin-right: 4em;} -*/ -/* hx margin-left = (1 / font-size) * .levelx-margin */ - - -/*____________ links to wiki pages (addition to _links) ____________*/ - -/* existing wikipage */ -.dokuwiki a.wikilink1 { - color: __existing__; - background-color: inherit; -} -/* not existing wikipage */ -.dokuwiki a.wikilink2 { - color: __missing__; - background-color: inherit; -} - - -/*____________ images ____________*/ - -/* embedded images (styles are already partly set in DokuWiki's lib/styles/all.css) */ -.dokuwiki img.media { - margin: .2em 0; -} -.dokuwiki img.medialeft { - margin: .2em 1.5em .2em 0; -} -.dokuwiki img.mediaright { - margin: .2em 0 .2em 1.5em; -} -.dokuwiki img.mediacenter { - margin: .2em auto; -} - - -/*____________ tables ____________*/ - -/* div before each table */ -.dokuwiki div.table { -} - -.dokuwiki table.inline { - min-width: 50%; -} -.dokuwiki table.inline tr:hover td { - background-color: __background_alt__; -} -.dokuwiki table.inline tr:hover th { - background-color: __border__; -} - - -/*____________ code ____________*/ - -/* fix if background-color hides underlining */ -.dokuwiki em.u code { - text-decoration: underline; -} - -/* filenames for downloadable file and code blocks */ -.dokuwiki dl.code, -.dokuwiki dl.file { -} - -.dokuwiki dl.code dt, -.dokuwiki dl.file dt { - background-color: __background_alt__; - border: solid __border__; - border-width: 1px 1px 0; - color: inherit; - display: inline; - padding: .1em .5em .2em; - margin-left: 1em; -} -[dir=rtl] .dokuwiki dl.code dt, -[dir=rtl] .dokuwiki dl.file dt { - margin-left: 0; - margin-right: 1em; -} -.dokuwiki dl.code dt a, -.dokuwiki dl.file dt a { -} - -.dokuwiki dl.code dd, -.dokuwiki dl.file dd { - margin: 0; -} - -/* for code in */ -.dokuwiki pre.file, -.dokuwiki dl.file pre, -.dokuwiki dl.file dt { - border-color: __text_neu__; -} - - -/*____________ media manager ____________*/ - -/* some headings in the media manager should not look like headings */ -#mediamanager__page h2, -#mediamanager__page h3 { - font-family: Frutiger, Calibri, Myriad, "Nimbus Sans L", Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; - color: __text__; -} - -/* to style button-like div in _fileuploader.css to look like other buttons, - please add '.qq-upload-button' to the according styles (which don't really exist in this template) */ -.qq-upload-button { - border: 1px solid __border__; - background-color: __background_alt__; - padding: 0.125em 0.4em; -} - -/*____________ styling plugin ____________*/ - -#plugin__styling.ispopup { - padding: 1em; -} - - -/*____________ JS popup ____________*/ - -.JSpopup { - background-color: __background__; - color: __text__; - border: 1px solid __border__; - line-height: 1.2; - padding: 0 .2em; -} - -.JSpopup ul, -.JSpopup ol { - padding-left: 0; -} -[dir=rtl] .JSpopup ul, -[dir=rtl] .JSpopup ol { - padding-right: 0; -} diff --git a/css/content.less b/css/content.less new file mode 100755 index 0000000..9b26cce --- /dev/null +++ b/css/content.less @@ -0,0 +1,404 @@ +/** + * This file provides the main design styles for the page content. + * + * @author Anika Henke + * @author Andreas Gohr + * @author Clarence Lee + */ + +/*____________ section indenting ____________ + +.dokuwiki .page h1 {margin-left: 0;} +.dokuwiki .page h2 {margin-left: .666em;} +.dokuwiki .page h3 {margin-left: 1.776em;} +.dokuwiki .page h4 {margin-left: 3em;} +.dokuwiki .page h5 {margin-left: 4.5712em;} +.dokuwiki .page div.level1 {margin-left: 0;} +.dokuwiki .page div.level2 {margin-left: 1em;} +.dokuwiki .page div.level3 {margin-left: 2em;} +.dokuwiki .page div.level4 {margin-left: 3em;} +.dokuwiki .page div.level5 {margin-left: 4em;} + +[dir=rtl] .dokuwiki .page h1 {margin-left: 0; margin-right: 0;} +[dir=rtl] .dokuwiki .page h2 {margin-left: 0; margin-right: .666em;} +[dir=rtl] .dokuwiki .page h3 {margin-left: 0; margin-right: 1.776em;} +[dir=rtl] .dokuwiki .page h4 {margin-left: 0; margin-right: 3em;} +[dir=rtl] .dokuwiki .page h5 {margin-left: 0; margin-right: 4.5712em;} +[dir=rtl] .dokuwiki .page div.level1 {margin-left: 0; margin-right: 0;} +[dir=rtl] .dokuwiki .page div.level2 {margin-left: 0; margin-right: 1em;} +[dir=rtl] .dokuwiki .page div.level3 {margin-left: 0; margin-right: 2em;} +[dir=rtl] .dokuwiki .page div.level4 {margin-left: 0; margin-right: 3em;} +[dir=rtl] .dokuwiki .page div.level5 {margin-left: 0; margin-right: 4em;} +*/ +/* hx margin-left = (1 / font-size) * .levelx-margin */ + +/*____________ links to wiki pages (addition to _links) ____________*/ + +/* existing wikipage */ +.dokuwiki a.wikilink1 { + color: @ini_existing; + background-color: inherit; +} + +/* not existing wikipage */ +.dokuwiki a.wikilink2 { + color: @ini_missing; + background-color: inherit; +} + +/*____________ images ____________*/ + +/* embedded images (styles are already partly set in lib/styles/all.css) */ +.dokuwiki img.media { + margin: .2em 0; +} + +.dokuwiki img.medialeft { + margin: .2em 1em .2em 0; +} + +.dokuwiki img.mediaright { + margin: .2em 0 .2em 1em; +} + +.dokuwiki img.mediacenter { + margin: .2em auto; +} + +/*____________ lists ____________*/ + +.dokuwiki .page, +.dokuwiki .aside { + ul li { + color: @ini_text_alt; + } + + ol li { + color: @ini_text_neu; + } + + li .li { + color: @ini_text; + } +} + +/*____________ tables ____________*/ + +/* div around each table */ +.dokuwiki div.table { + overflow-x: auto; + margin-bottom: 1.4em; + min-width: 50%; +} + +.dokuwiki div.table table { + margin-bottom: 0; +} + +.dokuwiki table.inline { + min-width: 50%; +} + +.dokuwiki table.inline tr:hover td { + background-color: @ini_background_alt; +} + +.dokuwiki table.inline tr:hover th { + background-color: @ini_border; +} + +/*____________ code ____________*/ + +/* fix if background-color hides underlining */ +.dokuwiki em.u code { + text-decoration: underline; +} + +/* filenames for downloadable file and code blocks */ +.dokuwiki dl.code, +.dokuwiki dl.file { + dt { + background-color: @ini_background_site; + background: linear-gradient(to bottom, @ini_background_alt 0%, @ini_background_site 100%); + color: inherit; + border: 1px solid @ini_border; + border-bottom-color: @ini_background_site; + border-top-left-radius: .3em; + border-top-right-radius: .3em; + padding: .3em .6em .1em; + margin-bottom: -1px; + float: left; + + a { + background-color: transparent; + font-size: 0.875em; + font-weight: normal; + display: block; + min-height: 16px; + } + } + + dd { + margin: 0; + clear: left; + } + + pre { + box-shadow: inset -4px -4px .5em -.3em @ini_border; + } +} + +[dir=rtl] .dokuwiki dl.code, +[dir=rtl] .dokuwiki dl.file { + dt { + float: right; + } + + dd { + clear: right; + } +} + +/* for code in */ +.dokuwiki dl.file { + pre, + dt { + border-style: dashed; + } + dt { + border-bottom-style: solid; + } +} + +/*____________ JS popup ____________*/ + +.JSpopup { + background-color: @ini_background; + color: @ini_text; + border: 1px solid @ini_border; + box-shadow: .1em .1em .1em @ini_border; + border-radius: 2px; + padding: .3em .5em; + font-size: .9em; +} + +.dokuwiki form.search div.ajax_qsearch { + top: -.35em; + font-size: 1em; + text-overflow: ellipsis; +} + +.JSpopup ul, +.JSpopup ol { + padding-left: 0; +} + +[dir=rtl] .JSpopup ul, +[dir=rtl] .JSpopup ol { + padding-right: 0; +} + +/* changes to underscored CSS files +********************************************************************/ + +#acl__tree li { + margin: 0; +} + +#dokuwiki__content span.curid a { + font-weight: normal; +} + +#dokuwiki__content strong span.curid a { + font-weight: bold; +} + +/*____________ changes to _edit ____________*/ + +.dokuwiki div.toolbar { + button.toolbutton { + border-radius: 0; + border-left-width: 0; + padding: .1em .35em; + } + + button.toolbutton:first-child { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + border-left-width: 1px; + } + + button.toolbutton:last-child { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + } +} + +[dir=rtl] .dokuwiki div.toolbar { + button.toolbutton:last-child { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-left-width: 1px; + } + + button.toolbutton:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + border-left-width: 0; + border-right-width: 1px; + } +} + +.dokuwiki div.section_highlight { + margin: 0 -2em; + padding: 0 1em; + border-width: 0 1em; +} + +.dokuwiki textarea.edit { + font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace; +} + +.dokuwiki div.preview { + margin: 0 -2em; + padding: 0 2em; +} + +.dokuwiki.hasSidebar div.preview { + border-right: @ini_sidebar_width solid @ini_background_alt; +} + +[dir=rtl] .dokuwiki.hasSidebar div.preview { + border-right-width: 0; + border-left: @ini_sidebar_width solid @ini_background_alt; +} + +.dokuwiki div.preview div.pad { + padding: 1.556em 0 2em; +} + +/*____________ changes to _toc ____________*/ + +#dw__toc { + margin: -1.556em -2em .5em 1.4em; + width: @ini_sidebar_width; + border-left: 1px solid @ini_border; + background: @ini_background; + color: inherit; +} + +[dir=rtl] #dw__toc { + margin: -1.556em 1.4em .5em -2em; + border-left-width: 0; + border-right: 1px solid @ini_border; +} + +.dokuwiki.export #dw__toc { + margin-top: 0; + margin-right: 0; +} + +[dir=rtl] .dokuwiki.export #dw__toc { + margin-top: 0; + margin-left: 0; +} + +.dokuwiki h3.toggle { + padding: .5em 1em; + margin-bottom: 0; + font-size: .875em; + letter-spacing: .1em; +} + +#dokuwiki__aside h3.toggle { + display: none; +} + +.dokuwiki .toggle strong { + background: transparent url(images/toc-arrows.png) 0 0; + width: 8px; + height: 5px; + margin: .4em 0 0; +} + +.dokuwiki .toggle.closed strong { + background-position: 0 -5px; +} + +.dokuwiki .toggle strong span { + display: none; +} + +#dw__toc { + > div { + font-size: 0.875em; + padding: .5em 1em 1em; + } + + ul { + padding: 0 0 0 1.2em; + + li { + list-style-image: url(images/toc-bullet.png); + } + } + + ul li.clear { + list-style: none; + } + + ul li div.li { + padding: .2em 0; + } +} + +[dir=rtl] #dw__toc ul { + padding: 0 1.5em 0 0; +} + +/*____________ changes to _imgdetail ____________*/ + +#dokuwiki__detail { + padding: 0; + + img { + float: none; + margin-bottom: 1.4em; + } + + div.img_detail { + float: none; + } + + div.img_detail dl { + overflow: hidden; + } + + div.img_detail dl dt { + float: left; + width: 9em; + text-align: right; + clear: left; + } + + div.img_detail dl dd { + margin-left: 9.5em; + } +} + +[dir=rtl] #dokuwiki__detail div.img_detail { + dl dt { + float: right; + text-align: left; + clear: right; + } + + dl dd { + margin-left: 0; + margin-right: 9.5em; + } +} diff --git a/css/design.css b/css/design.css deleted file mode 100644 index 1286370..0000000 --- a/css/design.css +++ /dev/null @@ -1,274 +0,0 @@ -/** - * This file provides the main design styles for the - * bits that surround the content. - * - * @author Anika Henke - * @author Andreas Gohr - */ - - -/* header -********************************************************************/ - -#dokuwiki__header { - margin: 1em 0 0; -} - -#dokuwiki__header .headings { - margin-bottom: 2.1em; -} -#dokuwiki__header h1 { - margin-bottom: 0; - font-size: 1.5em; -} -#dokuwiki__header h1 a { - text-decoration: none; - color: __link__; - background-color: inherit; -} -#dokuwiki__header p.claim { - margin-bottom: 0; -} -#dokuwiki__header h2 { - margin-bottom: 0; - font-size: 1.125em; -} - -#dokuwiki__header .tools { - margin-bottom: 2.1em; -} -#dokuwiki__header .tools ul { - margin-bottom: 0; -} -#dokuwiki__header .tools ul li { - display: inline; -} - -#dokuwiki__header form.search { - margin: .5em 0 0; - display: block; -} -#dokuwiki__header form.search #qsearch__in { - width: 12em; - margin-right: .5em; -} -[dir=rtl] #dokuwiki__header form.search #qsearch__in { - margin-right: 0; - margin-left: .5em; -} - -#dokuwiki__header div.breadcrumbs { - margin-bottom: .3em; -} -#dokuwiki__header div.breadcrumbs a { - color: __existing__; - background-color: inherit; -} - - -/* tools -********************************************************************/ - -/* make wiki links look the same as tool links in tool bars */ -#dokuwiki__usertools a.wikilink1, -#dokuwiki__pagetools a.wikilink1, -#dokuwiki__usertools a.wikilink2, -#dokuwiki__pagetools a.wikilink2 { - color: __link__; - border-bottom-width: 0; -} -#dokuwiki__usertools a.wikilink2:hover, -#dokuwiki__pagetools a.wikilink2:hover, -#dokuwiki__usertools a.wikilink2:active, -#dokuwiki__pagetools a.wikilink2:active, -#dokuwiki__usertools a.wikilink2:focus, -#dokuwiki__pagetools a.wikilink2:focus { - text-decoration: underline; -} - -/* highlight selected tool */ -/* before Greebo: */ -.mode_admin a.action.admin, -.mode_login a.action.login, -.mode_register a.action.register, -.mode_profile a.action.profile, -.mode_recent a.action.recent, -.mode_index a.action.index, -.mode_media a.action.media, -.mode_revisions a.action.revs, -.mode_backlink a.action.backlink, -.mode_subscribe a.action.subscribe, -/* since Greebo: */ -.mode_admin .action.admin a, -.mode_login .action.login a, -.mode_register .action.register a, -.mode_profile .action.profile a, -.mode_recent .action.recent a, -.mode_index .action.index a, -.mode_media .action.media a, -.mode_revisions .action.revs a, -.mode_backlink .action.backlink a, -.mode_subscribe .action.subscribe a { - font-weight: bold; -} - -/*____________ user tools ____________*/ - -#dokuwiki__usertools { - position: absolute; - top: 0; - right: 0; - border-bottom: 1px solid __border__; - background-color: __background_alt__; - width: 100%; -} -#dokuwiki__usertools ul, -#dokuwiki__pagetools ul { - /* imitate #dokuwiki__site */ - margin: 0 auto; - max-width: __site_width__; - padding: 0 1em; -} -#dokuwiki__usertools ul li.user { - float: left; - margin-left: 0; -} -[dir=rtl] #dokuwiki__usertools ul li.user { - float: right; - margin-right: 0; -} - -/*____________ page tools ____________*/ - -#dokuwiki__pagetools { - position: fixed; - bottom: 0; - left: 0; - border-top: 1px solid __border__; - background-color: __background_alt__; - width: 100%; - z-index: 10; -} -#dokuwiki__pagetools ul li { - display: inline; - margin: 0 1.5em 0 0; -} -/* before Greebo: */ -#dokuwiki__pagetools ul li a.action.top, -/* since Greebo: */ -#dokuwiki__pagetools ul li.action.top a { - float: right; -} -/* before Greebo: */ -[dir=rtl] #dokuwiki__pagetools ul li a.action.top, -/* since Greebo: */ -[dir=rtl] #dokuwiki__pagetools ul li.action.top a { - float: left; -} - -/* hide background images from menu items inserted via plugins */ -#dokuwiki__pagetools ul li a { - background-image: none !important; -} -#dokuwiki__pagetools ul li a::before { - content: none !important; -} - - -/* sidebar -********************************************************************/ - -#dokuwiki__aside { - padding-top: .4em; -} - -.dokuwiki .aside { - overflow: hidden; - word-wrap: break-word; - line-height: 1.2; -} - -/* make sidebar more condensed */ - -.dokuwiki .aside h1 { - margin-bottom: .222em; -} -.dokuwiki .aside h2 { - margin-bottom: .333em; -} -.dokuwiki .aside h3 { - margin-bottom: .444em; -} -.dokuwiki .aside h4 { - margin-bottom: .5em; -} -.dokuwiki .aside h5 { - margin-bottom: .5714em; -} - -.dokuwiki .aside p, -.dokuwiki .aside ul, -.dokuwiki .aside ol, -.dokuwiki .aside dl, -.dokuwiki .aside pre, -.dokuwiki .aside table, -.dokuwiki .aside fieldset, -.dokuwiki .aside hr, -.dokuwiki .aside blockquote, -.dokuwiki .aside address { - margin-bottom: .7em; -} - -.dokuwiki .aside ul, -.dokuwiki .aside ol { - padding-left: .5em; -} -[dir=rtl] .dokuwiki .aside ul, -[dir=rtl] .dokuwiki .aside ol { - padding-right: .5em; -} -.dokuwiki .aside li ul, -.dokuwiki .aside li ol { - margin-bottom: 0; - padding: 0; -} - - -/* content -********************************************************************/ - -.dokuwiki .page { - word-wrap: break-word; -} - -/* license note in footer and under edit window */ -.dokuwiki div.license { - font-size: 93.75%; -} - - -/* footer -********************************************************************/ - -.dokuwiki .wrapper { - margin-bottom: 2.8em; -} - -#dokuwiki__footer { - margin-bottom: 1em; -} - -#dokuwiki__footer .doc { - float: left; -} -#dokuwiki__footer .top { - float: right; -} - -#dokuwiki__footer .license { - clear: both; -} -#dokuwiki__footer .license img { - margin: 0 .5em 0 0; - float: none; -} diff --git a/css/design.less b/css/design.less new file mode 100755 index 0000000..e295327 --- /dev/null +++ b/css/design.less @@ -0,0 +1,364 @@ +/** + * This file provides the main design styles for the + * bits that surround the content. + * + * @author Anika Henke + * @author Andreas Gohr + * @author Clarence Lee + */ + +.dokuwiki.export { + background-color: @ini_background; +} + +/* header +********************************************************************/ + +#dokuwiki__header { + padding: 2em 0 1.5em; + + .headings, + .tools { + margin-bottom: 1.5em; + width: 49%; + } + .tools { + margin-top: .2em; + } + + .logo { + margin: 0; + font-size: 1.5em; + font-weight: normal; + line-height: 1.2; + + img { + float: left; + margin-right: .5em; + height: 64px; + width: auto; + } + + span { + display: block; + padding-top: 10px; + } + + a { + text-decoration: none; + color: @ini_text; + background-color: inherit; + } + } + + p.claim { + margin-bottom: 0; + font-size: 0.875em; + } + + /* make all links in header (including breadcrumb and interwiki) same colour as the rest */ + a { + color: @ini_link; + background-color: inherit; + } +} + +[dir=rtl] #dokuwiki__header .logo img { + float: right; + margin-left: .5em; + margin-right: 0; +} + +/* tools +********************************************************************/ + +/* highlight selected tool */ +.mode_admin .action.admin a, +.mode_login .action.login a, +.mode_register .action.register a, +.mode_profile .action.profile a, +.mode_recent .action.recent a, +.mode_index .action.index a, +.mode_media .action.media a, +.mode_revisions .action.revs a, +.mode_backlink .action.backlink a, +.mode_subscribe .action.subscribe a { + font-weight: bold; +} + +#dokuwiki__header .tools { + ul { + padding-left: 0; + margin-bottom: 0; + } + + li { + font-size: 0.875em; + margin-left: 1em; + list-style: none; + display: inline; + vertical-align: top; + } + + form.search div.ajax_qsearch li { + font-size: 1em; + margin-left: 0; + display: block; + overflow: hidden; + text-overflow: ellipsis; + } +} + +[dir=rtl] #dokuwiki__header .tools li { + margin-right: 1em; + margin-left: 0; +} + +#dokuwiki__header .mobileTools { + display: none; /* hide mobile tools dropdown to only show in mobile view */ +} + +/*____________ site tools ____________*/ + +#dokuwiki__sitetools { + text-align: right; + + form.search { + font-size: 0.875em; + } +} + +[dir=rtl] #dokuwiki__sitetools { + text-align: left; +} + +form.search { + display: block; + position: relative; + margin-bottom: 0.5em; + + input { + width: 18em; + padding: .35em 22px .35em .1em; + } + + button { + background: transparent url(images/search.png) no-repeat 0 0; + border-width: 0; + width: 19px; + height: 14px; + text-indent: -99999px; + margin-left: -20px; + box-shadow: none; + padding: 0; + } +} + +[dir=rtl] form.search { + input { + padding: .35em .1em .35em 22px; + } + + button { + background-position: 5px 0; + margin-left: 0; + margin-right: -20px; + position: relative; + } +} + +/*____________ breadcrumbs ____________*/ + +.dokuwiki div.breadcrumbs { + border-top: 1px solid @ini_border; + border-bottom: 1px solid @ini_background; + margin-bottom: .5em; + font-size: 0.875em; + clear: both; + + div { + padding: .1em .35em; + } + + div:only-child { + border-top: 1px solid @ini_background; + border-bottom: 1px solid @ini_border; + } + + div:first-child { + border-top: 1px solid @ini_background; + } + + div:last-child { + border-bottom: 1px solid @ini_border; + } + + .bcsep { + font-size: 0.75em; + } +} + +/* sidebar +********************************************************************/ + +.dokuwiki .aside { + font-size: 0.875em; + overflow: hidden; + word-wrap: break-word; + + /* make sidebar more condensed */ + + h1 { + font-size: 1.714em; + margin-bottom: .292em; + } + + h2 { + margin-bottom: .333em; + } + + h3 { + margin-bottom: .444em; + } + + h4 { + margin-bottom: .5em; + } + + h5 { + margin-bottom: .5714em; + } + + p, + ul, + ol, + dl, + pre, + table, + fieldset, + hr, + blockquote, + address { + margin-bottom: .7em; + } + + ul, + ol { + padding-left: .5em; + } + + li ul, + li ol { + margin-bottom: 0; + padding: 0; + } + + a:link, + a:visited { + color: @ini_link; + background-color: inherit; + } +} + +[dir=rtl] .dokuwiki .aside ul, +[dir=rtl] .dokuwiki .aside ol { + padding-right: .5em; +} + +/* content +********************************************************************/ + +.dokuwiki .pageId { + float: right; + margin-right: -1em; + margin-bottom: -1px; + margin-top: -1.5em; + overflow: hidden; + padding: 0.5em 1em 0; + + span { + font-size: 0.875em; + border: solid @ini_background_alt; + border-width: 1px 1px 0; + background-color: @ini_background; + color: @ini_text_alt; + padding: .1em .35em; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + box-shadow: 0 0 .5em @ini_text_alt; + display: block; + } +} + +.dokuwiki div.page { + clear: both; + background: @ini_background; + color: inherit; + border: 1px solid @ini_background_alt; + box-shadow: 0 0 .5em @ini_text_alt; + border-radius: 2px; + padding: 1.556em 2em 2em; + margin-bottom: .5em; + overflow-x: clip; + overflow-y: visible; + word-wrap: break-word; +} + +.dokuwiki .docInfo { + font-size: 0.875em; + text-align: right; + overflow-wrap: break-word; +} + +/* license note under edit window */ +.dokuwiki div.license { + font-size: 93.75%; +} + +[dir=rtl] .dokuwiki .docInfo { + text-align: left; +} + +[dir=rtl] .dokuwiki .pageId { + float: left; + margin-left: -1em; + margin-right: 0; +} + +/* footer +********************************************************************/ + +.dokuwiki .wrapper { + margin-bottom: 1.4em; +} + +#dokuwiki__footer { + margin-bottom: 1em; + text-align: center; + + > .pad { + font-size: 0.875em; + } + + div.license { + margin-bottom: 0.5em; + font-size: 100%; + } + + div.buttons a { + img { + opacity: 0.5; + } + + &:hover img, + &:active img, + &:focus img { + opacity: 1; + } + } + +} + +[dir=rtl] #dokuwiki__footer .license img { + margin: 0 0 0 .5em; +} diff --git a/css/includes.css b/css/includes.css deleted file mode 100644 index bc18996..0000000 --- a/css/includes.css +++ /dev/null @@ -1,4 +0,0 @@ -/** - * This file provides styles for included seperate html files - * (added through "include hooks"). - */ diff --git a/css/mobile.css b/css/mobile.css deleted file mode 100644 index 3a88e52..0000000 --- a/css/mobile.css +++ /dev/null @@ -1,78 +0,0 @@ -/** - * This file provides style changes for small screens. - * - * @author Anika Henke - */ - -@media only screen and (max-width: 42em) { - -#dokuwiki__site .wrapper { - flex-direction: column; - gap: 1.4em; -} - -#dokuwiki__aside { - width: auto; - flex: 0 0 auto; -} - -.hasSidebar #dokuwiki__content { - margin: 0; -} - -#dokuwiki__header .headings { - margin: 2.1em 0 0; -} - -#dokuwiki__header .tools { - margin-bottom: .7em; -} - -#dokuwiki__header .headings, -#dokuwiki__header .tools, -#dokuwiki__header .tools li { - float: none; - text-align: left; -} -[dir=rtl] #dokuwiki__header .tools, -[dir=rtl] #dokuwiki__header .tools li { - float: none; - text-align: right; -} -[dir=rtl] #dokuwiki__header .headings { - float: none; - text-align: right; -} - -#dokuwiki__sitetools ul { - padding: 0; -} -#dokuwiki__sitetools li { - margin: 0 1.5em 0 0; -} -[dir=rtl] #dokuwiki__sitetools li { - margin: 0 0 0 1.5em; -} - -#dokuwiki__header div.breadcrumbs { - margin-bottom: .7em; -} - - -#dokuwiki__header ul.a11y.skip { - left: auto !important; - right: 1em !important; - top: 3.1em !important; - width: auto !important; - height: auto !important; - list-style: none; - padding: 0; - margin: 0; -} -[dir=rtl] #dokuwiki__header ul.a11y.skip { - right: auto !important; - left: 1em !important; -} - - -} /* /@media */ \ No newline at end of file diff --git a/css/mobile.less b/css/mobile.less new file mode 100755 index 0000000..a52c723 --- /dev/null +++ b/css/mobile.less @@ -0,0 +1,332 @@ +/** + * This file provides styles for mobile devices + * and smaller screens (up to 480px and 768px width). + * + * @author Anika Henke + */ + +/* for detecting media queries in JavaScript (see script.js): */ +#screen__mode { + position: relative; + z-index: 0; +} + +/* for screen widths in the tablet range +********************************************************************/ +@media only screen and (max-width: @ini_tablet_width) { + +#screen__mode { + z-index: 1; /* for detecting media queries in JavaScript (see script.js) */ +} + +/* structure */ +#dokuwiki__aside { + width: 100%; + float: none; + margin-bottom: 1.5em; +} + +#dokuwiki__aside > .pad, +[dir=rtl] #dokuwiki__aside > .pad { + margin: 0 0 .5em; + /* style like .page */ + background: @ini_background; + color: inherit; + border: 1px solid #eee; + box-shadow: 0 0 .5em @ini_text_alt; + border-radius: 2px; + padding: 1em; + margin-bottom: .5em; +} + +#dokuwiki__aside h3.toggle { + font-size: 1em; + + &.closed { + margin-bottom: 0; + padding-bottom: 0; + } + &.open { + border-bottom: 1px solid @ini_border; + } +} + +.showSidebar #dokuwiki__content { + float: none; + margin-left: 0; + width: 100%; + + > .pad { + margin-left: 0; + } +} + +[dir=rtl] .showSidebar #dokuwiki__content, +[dir=rtl] .showSidebar #dokuwiki__content > .pad { + margin-right: 0; +} + +/* preview */ +.dokuwiki.hasSidebar div.preview { + border-right: none; +} + +[dir=rtl] .dokuwiki.hasSidebar div.preview { + border-left: none; +} + +/* toc */ +#dw__toc { + float: none; + margin: 0 0 1em 0; + width: auto; + border-left-width: 0; + border-bottom: 1px solid @ini_border; +} +[dir=rtl] #dw__toc { + float: none; + margin: 0 0 1em 0; + border-right-width: 0; +} + +.dokuwiki h3.toggle { + padding: 0 .5em .5em 0; +} +#dw__toc > div, +#dokuwiki__aside div.content { + padding: .2em 0 .5em; +} + +/* page */ +.dokuwiki div.page { + padding: 1em; +} +/* enable horizontal scrolling in media manager */ +.mode_media div.page { + overflow: auto; +} + +/* push pagetools closer to content */ +#dokuwiki__pagetools { + top: 0; +} +.showSidebar #dokuwiki__pagetools { + top: 3.5em; +} + + +/* _edit */ +.dokuwiki div.section_highlight { + margin: 0 -1em; + padding: 0 .5em; + border-width: 0 .5em; +} +.dokuwiki div.preview { + margin: 0 -1em; + padding: 1em; +} + +/* _recent */ +.dokuwiki form.changes ul { + padding-left: 0; +} +[dir=rtl] .dokuwiki form.changes ul { + padding-right: 0; +} + + +} /* /@media */ + + +/* for screen widths in the smartphone range +********************************************************************/ +@media only screen and (max-width: @ini_phone_width) { + +#screen__mode { + z-index: 2; /* for detecting media queries in JavaScript (see script.js) */ +} + +body { + font-size: 100%; +} + +/*____________ structure ____________*/ + +#dokuwiki__site { + max-width: 100%; + + > .site { + padding: 0 .5em; + } +} + +#dokuwiki__aside { + margin-bottom: 0; +} + +#dokuwiki__header { + padding: .5em 0; +} + + +/*____________ header ____________*/ + +#dokuwiki__header ul.a11y.skip { + position: static !important; + left: 0 !important; + width: auto !important; + height: auto !important; + float: right; + font-size: 0.875em; + list-style: none; + padding-left: 0; + margin: 0; + + li { + margin-left: .35em; + display: inline; + } +} +[dir=rtl] #dokuwiki__header ul.a11y.skip { + left: auto !important; + right: 0 !important; + float: left; + padding-right: 0; + + li { + margin: 0 .35em 0 0; + } +} + +#dokuwiki__header .headings, +#dokuwiki__header .tools { + float: none; + text-align: left; + width: auto; + margin-bottom: .5em; +} +[dir=rtl] #dokuwiki__header .headings, +[dir=rtl] #dokuwiki__header .tools { + float: none; + text-align: right; + width: auto; +} +#dokuwiki__sitetools { + text-align: left; +} +[dir=rtl] #dokuwiki__sitetools { + text-align: right; +} +#dokuwiki__usertools, +#dokuwiki__sitetools ul, +#dokuwiki__sitetools h3, +#dokuwiki__pagetools, +.dokuwiki div.breadcrumbs, /* @todo: maybe move breadcrumbs to the bottom? */ +.dokuwiki .pageId { + display: none; +} + +/* search form */ +#dokuwiki__sitetools form.search { + float: left; + margin: 0 .2em .2em 0; + width: 49%; +} +[dir=rtl] #dokuwiki__sitetools form.search { + float: right; + margin: 0 0 .2em .2em; +} + +#dokuwiki__sitetools form.search input { + width: 100% !important; +} +.dokuwiki form.search div.ajax_qsearch { + display: none !important; +} + +/* action dropdown is alternative for all hidden tools */ +#dokuwiki__header .mobileTools { + display: block; + font-size: 0.875em; + margin: 0 0 .2em 0; + float: right; + width: 49%; +} +[dir=rtl] #dokuwiki__header .mobileTools { + float: left; +} +#dokuwiki__header .mobileTools select { + padding: .3em .1em; + width: 100% !important; +} + +/* force same height on search input and tools select */ +#dokuwiki__sitetools form.search input, +#dokuwiki__header .mobileTools select { + height: 2.1em; + line-height: 2.1em; + overflow: visible; +} + + +/*____________ content ____________*/ + +#dokuwiki__aside > .pad, +.dokuwiki div.page { + padding: .5em; +} + +/* form elements */ +#config__manager fieldset td.value, +#config__manager td .input, +.dokuwiki fieldset, +.dokuwiki input.edit, +.dokuwiki textarea { + width: auto !important; + max-width: 100% !important; +} +.dokuwiki select { + max-width: 100% !important; +} +#config__manager fieldset { + margin-left: 0; + margin-right: 0; +} + +.dokuwiki label.block { + text-align: left; + + span { + display: block; + } +} +[dir=rtl] .dokuwiki label.block { + text-align: right; +} + +/* _edit */ +.dokuwiki div.section_highlight { + margin: 0; + padding: 0; + border-width: 0; +} +.dokuwiki div.preview { + margin: 0 -.5em; + padding: .5em; +} + + +} /* /@media */ + + +/* for screen heights smaller than the pagetools permit +********************************************************************/ +@media only screen and (max-height: 400px) { +// 400px is only roughly the required value, this may be wrong under non-standard circumstances + +#dokuwiki__pagetools div.tools { + position: static; +} + + +} /* /@media */ diff --git a/css/pagetools.less b/css/pagetools.less new file mode 100755 index 0000000..5473594 --- /dev/null +++ b/css/pagetools.less @@ -0,0 +1,124 @@ +/** + * This file provides the styles for the page tools + * (fly out navigation beside the page to edit, etc). + * + * @author Anika Henke + * @author Andreas Gohr + */ + +#dokuwiki__site > .site { + /* give space to the right so the tools won't disappear on smaller screens */ + /* it's 40px because the 30px wide icons will have 5px more spacing to the left and right */ + padding-right: 40px; + /* give the same space to the left to balance it out */ + padding-left: 40px; +} + +.dokuwiki div.page { + height: 190px; + min-height: 190px; /* 30 (= height of icons) x 6 (= maximum number of possible tools) + 2x5 */ + height: auto; +} + +#dokuwiki__pagetools { + @ico-width: 28px; + @ico-margin: 8px; + @item-width: (@ico-width + @ico-margin + @ico-margin); + @item-height: (@ico-width + @ico-margin); + + position: absolute; + right: (-1 * @item-width); + /* on same vertical level as first headline, because .page has 2em padding */ + top: 2em; + width: @item-width; + + div.tools { + position: fixed; + width: @item-width; + + ul { + position: absolute; + right: 0; + text-align: right; + margin: 0; + padding: 0; + /* add transparent border to prevent jumping when proper border is added on hover */ + border: 1px solid transparent; + z-index: 10; + + li { + padding: 0; + margin: 0; + list-style: none; + font-size: 0.875em; + + a { + + display: block; + /* add transparent border to prevent jumping when proper border is added on focus */ + border: 1px solid transparent; + white-space: nowrap; + line-height: @item-height; + vertical-align: middle; + height: @item-height; + + span { + display: none; // hide label until hover + margin: 0 @ico-margin; + } + + svg { + width: @ico-width; + height: @ico-width; + margin: 0 @ico-margin; + display: inline-block; + vertical-align: middle; + fill: @ini_border; + } + } + + // on interaction show the full item + a:active, + a:focus, + a:hover { + background-color: @ini_background_alt; + + span { + display: inline-block; + } + + svg { + fill: @ini_link; + } + } + } + } + } + + [dir=rtl] & { + right: auto; + left: (-1 * @item-width); + + div.tools { + ul { + right: auto; + left: 0; + text-align: left; + } + } + } +} + +// on hover or focus show all items +#dokuwiki__pagetools:hover, #dokuwiki__pagetools:focus-within { + div.tools ul { + background-color: @ini_background; + border-color: @ini_border; + border-radius: 2px; + box-shadow: 2px 2px 2px @ini_text_alt; + + li a span { + display: inline-block; + } + } +} diff --git a/css/print.css b/css/print.css old mode 100644 new mode 100755 index a7f7286..dd5d71b --- a/css/print.css +++ b/css/print.css @@ -11,13 +11,15 @@ body { } /* hide certain sections */ +.a11y, audio, video, #dokuwiki__header .tools, #dokuwiki__aside, .dokuwiki .breadcrumbs, -.dokuwiki .toc, +.dokuwiki .pageId, #dw__toc, +h3.toggle, #dokuwiki__pagetools, #dokuwiki__footer { display: none; @@ -32,7 +34,6 @@ caption, legend { clear: both; } - ul { list-style: disc outside; } @@ -52,15 +53,12 @@ ol ol ol ol ol { list-style-type: lower-roman; } -/* undo icons */ a:link, a:visited { text-decoration: none; border-bottom: 1pt dotted; color: #333; background-color: inherit; - background-image: none; - padding: 0; } /* display href after link */ @@ -74,15 +72,19 @@ a.mail:after { /* code blocks */ pre { font-family: monospace; + white-space: pre-wrap; } dl.code dt, dl.file dt { font-weight: bold; } +mark { + font-weight: bold; +} + /* images */ -img, -svg { +img { border-width: 0; vertical-align: middle; } @@ -90,19 +92,15 @@ img.media { margin: .2em 0; } img.medialeft { - margin: .2em 1.5em .2em 0; + margin: .2em 1em .2em 0; } img.mediaright { - margin: .2em 0 .2em 1.5em; + margin: .2em 0 .2em 1em; } img.mediacenter { margin: .2em auto; } -mark { - font-weight: bold; -} - blockquote { padding: 0 10pt; margin: 0; @@ -114,6 +112,9 @@ blockquote { } /* tables */ +.dokuwiki div.table { + margin-bottom: 1.4em; +} table { border-collapse: collapse; empty-cells: show; @@ -126,14 +127,13 @@ td { margin: 0; vertical-align: top; border: 1pt solid #666; - text-align: left; -} -[dir=rtl] th, -[dir=rtl] td { - text-align: right; } th { font-weight: bold; + text-align: left; +} +[dir=rtl] th { + text-align: right; } @@ -142,14 +142,40 @@ th { #dokuwiki__header { border-bottom: 2pt solid #ccc; } -#dokuwiki__header h1 { +#dokuwiki__header .logo { font-size: 1.5em; + font-weight: bold; } -#dokuwiki__header h1 a { +#dokuwiki__header .logo a { text-decoration: none; + border-width: 0; } +#dokuwiki__header .logo img { + float: left; + margin-right: .5em; + height: 64px; + width: auto; +} +[dir=rtl] #dokuwiki__header .logo img { + float: right; + margin-right: 0; + margin-left: .5em; +} + .dokuwiki div.footnotes { clear: both; - border-top: 1pt solid #000; + border-top: 1pt dotted #999; margin-top: 10pt; } + +.dokuwiki div.docInfo { + font-size: 90%; + text-align: right; + clear: both; + padding-top: 2pt; + border-top: 1pt solid #999; + margin-top: 10pt; +} +[dir=rtl] .dokuwiki div.docInfo { + text-align: left; +} diff --git a/css/structure.css b/css/structure.css deleted file mode 100644 index a01cea5..0000000 --- a/css/structure.css +++ /dev/null @@ -1,61 +0,0 @@ -/** - * This file provides styles for the general layout structure. - * - * @author Anika Henke - */ - -body { - margin: 0 auto; -} -#dokuwiki__site { - margin: 0 auto; - max-width: __site_width__; - padding: 1.4em 1em; -} -#dokuwiki__site > .site { -} - -#dokuwiki__header { -} - #dokuwiki__header .headings { - float: left; - } - [dir=rtl] #dokuwiki__header .headings { - float: right; - } - - #dokuwiki__header .tools { - float: right; - text-align: right; - } - [dir=rtl] #dokuwiki__header .tools { - float: left; - text-align: left; - } - -#dokuwiki__site .wrapper { - position: relative; - display: flex; - align-items: flex-start; - gap: 1.5em; -} -[dir=rtl] #dokuwiki__site .wrapper { - flex-direction: row-reverse; -} - -#dokuwiki__aside { - flex: 0 0 __sidebar_width__; - width: __sidebar_width__; - position: relative; - display: block; -} - -#dokuwiki__content { - flex: 1 1 auto; - min-width: 0; -} - -#dokuwiki__footer { - clear: both; -} - diff --git a/css/structure.less b/css/structure.less new file mode 100755 index 0000000..3ea2f83 --- /dev/null +++ b/css/structure.less @@ -0,0 +1,89 @@ +/** + * This file provides styles for the general layout structure. + * + * @author Anika Henke + */ +body { + margin: 0 auto; +} + +#dokuwiki__site { + margin: 0 auto; + max-width: @ini_site_width; +} + +#dokuwiki__site > .site { + padding: 0 .5em; +} + +#dokuwiki__header { + width: 100%; + + .headings { + float: left; + } + + .tools { + float: right; + text-align: right; + } +} + +[dir=rtl] #dokuwiki__header { + .headings { + float: right; + text-align: right; + } + + .tools { + float: left; + text-align: left; + } +} + +#dokuwiki__site .wrapper { + position: relative; +} + +#dokuwiki__aside { + width: @ini_sidebar_width; + float: left; + position: relative; + display: block; + + > .pad { + margin: 0 1.5em 0 0; + } +} + +[dir=rtl] #dokuwiki__aside { + float: right; + > .pad { + margin: 0 0 0 1.5em; + } +} + +.showSidebar #dokuwiki__content { + float: right; + margin-left: (-1 * @ini_sidebar_width); + width: 100%; + + > .pad { + margin-left: @ini_sidebar_width; + } +} + +[dir=rtl] .showSidebar #dokuwiki__content { + float: left; + margin-left: 0; + margin-right: (-1 * @ini_sidebar_width); + + > .pad { + margin-left: 0; + margin-right: @ini_sidebar_width; + } +} + +#dokuwiki__footer { + clear: both; +} diff --git a/css/tuivision.css b/css/tuivision.css deleted file mode 100644 index 8b9d2b3..0000000 --- a/css/tuivision.css +++ /dev/null @@ -1,263 +0,0 @@ -/* TurboVision-inspired integration layer for TuiCSS. - * Keep changes template-owned (do not edit _vendor/tuicss). - */ - -/* Base look */ -body.luxtools-tv { - min-height: 100vh; - color: #fff; - /* Keep content visible under fixed bars */ - --luxtools-topbar-h: 34px; - --luxtools-statusbar-h: 28px; - padding-top: 0; - padding-bottom: var(--luxtools-statusbar-h); -} - -/* DokuWiki default template tends to assume dark-on-light; override minimal bits */ -body.luxtools-tv .dokuwiki { - color: inherit; -} - -body.luxtools-tv a { - color: rgb(0, 255, 255); -} - -/* Keep the existing centered/max-width layout */ -body.luxtools-tv #dokuwiki__site { - background: transparent; - max-width: none; - width: 100%; - margin-top: var(--luxtools-topbar-h); -} - -/* Make wrapper a two-column flex layout in TV mode */ -body.luxtools-tv #dokuwiki__site .wrapper { - display: flex; - align-items: stretch; - min-height: calc(100vh - var(--luxtools-topbar-h) - var(--luxtools-statusbar-h)); -} - -body.luxtools-tv #dokuwiki__aside { - float: none; - flex: 0 0 __sidebar_width__; - width: auto; -} - -body.luxtools-tv #dokuwiki__content { - float: none; - flex: 1 1 auto; - width: auto; - margin: 0; - min-width: 0; -} - -body.luxtools-tv .hasSidebar #dokuwiki__content { - margin-left: 0; - width: auto; -} - -/* Let the page fieldset fill available vertical space */ -body.luxtools-tv #dokuwiki__content { - display: flex; - flex-direction: column; - height: 100%; -} - -body.luxtools-tv .luxtools__page-fieldset { - flex: 1 1 auto; - display: flex; - flex-direction: column; - min-height: 0; -} - -/* Ensure the inner wiki content can scroll if it overflows */ -body.luxtools-tv .luxtools__page-fieldset > * { - min-width: 0; -} - -/* --- Top bar --- */ -#dokuwiki__header { - margin: 0; -} - -#luxtools__topbar { - position: fixed; - top: 0; - left: 0; - width: 100%; - z-index: 100; -} - -#luxtools__topbar .luxtools__topbar-inner { - display: flex; - align-items: center; - gap: 12px; -} - -#luxtools__topbar .luxtools__brand a { - display: inline-flex; - align-items: center; - gap: 8px; - text-decoration: none; - color: black; -} - -#luxtools__topbar .luxtools__logo { - width: 18px; - height: 18px; - image-rendering: pixelated; -} - -#luxtools__topbar .luxtools__title { - font-weight: bold; -} - -#luxtools__topbar .luxtools__search { - margin-left: auto; - display: flex; - justify-content: flex-end; -} - -/* Make the core search form look like TuiCSS input */ -#luxtools__topbar form.search { - margin: 0; -} - -/* Trace should be inline in the bar (not centered, not blocky) */ -#luxtools__topbar .luxtools__trace { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 45vw; - color: black; -} - -#luxtools__topbar .luxtools__trace .breadcrumbs { - display: inline; - margin: 0; -} - -#luxtools__topbar .luxtools__trace a { - color: black; -} - -#luxtools__topbar form.search input[type="text"], -#luxtools__topbar form.search input#qsearch__in { - background-color: rgb(0, 0, 0); - color: white; - outline: 0; - border: none; - border-radius: 0; - padding: 2px 6px; - width: 100%; - max-width: 26em; -} - -#luxtools__topbar form.search input[type="text"]:focus, -#luxtools__topbar form.search input#qsearch__in:focus { - background-color: rgb(255, 255, 0); - color: black; -} - -#luxtools__topbar form.search button, -#luxtools__topbar form.search input[type="submit"] { - display: none; -} - -#luxtools__topbar .luxtools__menus { - margin: 0; - padding: 0; - list-style: none; - display: flex; - align-items: center; - gap: 10px; -} - -/* Be resilient against generic "nav ul li { display:block }" rules */ -#luxtools__topbar ul, -#luxtools__topbar li { - list-style: none; -} - -#luxtools__topbar .luxtools__menus > li { - display: inline-block !important; -} - -/* Keep dropdown menu vertical */ -#luxtools__topbar .tui-dropdown-content ul { - display: block; -} - -#luxtools__topbar .tui-dropdown-content ul li { - display: block !important; -} - -#luxtools__topbar .luxtools__menu { - user-select: none; -} - -/* (trace styling moved above) */ - -#luxtools__topbar .luxtools__dropdown-title { - margin: 6px; -} - -/* --- Fieldsets around sidebar and page --- */ -.luxtools__sidebar-fieldset, -.luxtools__page-fieldset { - margin: 0; -} - -.luxtools__page-fieldset { - margin-bottom: 0; -} - -/* Avoid double spacing from DokuWiki pads */ -#dokuwiki__content { - padding-top: 0; -} - -/* --- Status bar --- */ -#dokuwiki__pagetools { - border: none; - background-color: rgb(168, 168, 168); -} - -#dokuwiki__pagetools ul { - margin: 0; - padding: 0; - list-style: none; - display: flex; - align-items: center; - flex-wrap: wrap; -} - -#dokuwiki__pagetools ul li { - display: inline-flex !important; - margin: 0 0 0 10px; - padding: 2px 3px; -} - -#dokuwiki__pagetools ul li a { - color: black; - text-decoration: none; - border-bottom: none; -} - -#dokuwiki__pagetools ul li:active, -#dokuwiki__pagetools ul li:hover { - background-color: rgb(0, 0, 168); -} - -#dokuwiki__pagetools ul li:active a, -#dokuwiki__pagetools ul li:hover a { - color: white; -} - -.luxtools__hotkey { - margin-right: 4px; -} - -.tui-fieldset { - background-color: #0000a8; -} diff --git a/css/usertools.less b/css/usertools.less new file mode 100755 index 0000000..efdf16c --- /dev/null +++ b/css/usertools.less @@ -0,0 +1,50 @@ +#dokuwiki__usertools { + position: absolute; + top: .5em; + right: 40px; // pagetool width + text-align: right; + width: 100%; + + ul { + margin: 0 auto; + padding: 0; + max-width: @ini_site_width; + } + + li.action a { + display: inline-flex; + flex-direction: row-reverse; + flex-wrap: nowrap; + + svg { + height: 1.4em; + width: 1.4em; + vertical-align: middle; + fill: @ini_border; + margin-right: 0.2em; + } + } + + li.action a:hover, + li.action a:active { + svg { + fill: @ini_link; + } + } + +} + +[dir=rtl] #dokuwiki__usertools { + text-align: left; + left: 40px; // pagetool width + right: auto; + + + li.action a { + + svg { + margin-right: 0; + margin-left: 0.2em; + } + } +} diff --git a/detail.php b/detail.php old mode 100644 new mode 100755 index aa94b9b..9eaaad3 --- a/detail.php +++ b/detail.php @@ -1,4 +1,5 @@ - + - + - <?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?> + <?php echo hsc(tpl_img_getTag('IPTC.Headline', $IMG))?> [<?php echo strip_tags($conf['title'])?>] - - + -
- +
- - + -
- -

+
- + +
+ -
-

+ +
+ - - - -
+
+ + + + ' . $ERROR . ''; + else : ?> + +

+ + + +
+ +
$tag){ - $t = array(); - if (!empty($tag[0])) { - $t = array($tag[0]); - } - if(is_array($tag[3])) { - $t = array_merge($t,$tag[3]); - } - $value = tpl_img_getTag($t); - if ($value) { - echo '
'.$lang[$tag[1]].':
'; - if ($tag[2] == 'date') { - echo dformat($value); - } else { - echo hsc($value); - } - echo '
'; - } + echo '
' . $lang['reference'] . ':
'; + $media_usage = ft_mediause($IMG, true); + if ($media_usage !== []) { + foreach ($media_usage as $path) { + echo '
' . html_wikilink($path) . '
'; } + } else { + echo '
' . $lang['nothingfound'] . '
'; + } ?> -
+
+

+
+ -
-
+ + + - +
+ */ ?> - -
+
+ +
+ + + + + +
+ + + diff --git a/fonts/Perfect DOS VGA 437 Win.ttf b/fonts/Perfect DOS VGA 437 Win.ttf deleted file mode 100644 index d03b1c5e5780554a44cf7c8caf03d0da38d4de25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82676 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 diff --git a/images/apple-touch-icon.png b/images/apple-touch-icon.png old mode 100644 new mode 100755 index 45fa4e7b081d35277b8d6f86a3e2a3f16aa3295e..87c99a9194b847a00c6cf211fbf9dea06dc22d72 GIT binary patch literal 6336 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 LNkvXXu0mjf;IP?j diff --git a/images/button-css.png b/images/button-css.png new file mode 100755 index 0000000000000000000000000000000000000000..5c0f5a9936e2c0c52b150f138b9df462b58c5724 GIT binary patch literal 297 zcmV+^0oMMBP)K~=a4CjcodXPV4VJ#(T~ivj_KbD4HB-<^MP-5Cc03hfj3 zvVX5FJDvqHaRJw=1q?uhO`-Ir`<7e(ax^f4+{m?H6&H}iYNGhh+q);tpXR^-RtPba z3!6gb|I_~lNPcBtfSR}pf-n^_?hpMN#QuYU#R1|*1`xuku$F0O?c8e}eF+47&0xt; vE_pkk=7j(ug^WNH1hN^QLZaiE=+pxMLO3L|k%~*E00000NkvXXu0mjfHHd&9 literal 0 HcmV?d00001 diff --git a/images/button-donate.gif b/images/button-donate.gif new file mode 100755 index 0000000000000000000000000000000000000000..bba284e214e3ff94657be76a4b399291bc55768d GIT binary patch literal 187 zcmV;s07U;sNk%w1VNd`M0HFc^iH>>y|NmUfD`sY9EC2ui08juA0007%oR6u??GI0w zwAzca-n^S2gyKk+VF0A+%C_zcyTNDHH5%vo&dvj9698>Ep7GeD5huZ-Y_fu;icTqj zGPNdu#GuI8!ilF@vYDy^Z-*vkGd8}S_aHg~6{$8|%|_hJ_)H|Ur} pc(vE&C4_W|>(N06SCBTRH#$ literal 0 HcmV?d00001 diff --git a/images/button-dw.png b/images/button-dw.png new file mode 100755 index 0000000000000000000000000000000000000000..8d6aea898634683b381f03903c824449f9e22985 GIT binary patch literal 398 zcmV;90df9`P)IWd0001BP)t-se<}m3 ztVh_{V&&1=`kQw7;^EB9%(Nu}#^uh5+nx%c68re(sEl^z#IVX& zH|F)=ORGM?$h7$J%5H>>r?8-dmYrRBgG+06J6&p1Q&a!{|8{(4C0)l#0002#Nkl5tI7-PVBZ%DN=jaj!CGr<5Lpf9a5rrHQXKDg<5o+j1zRYzBl znUBZ5q$B;lf-wd%0yetn6*CcC!0SjDPIuFW0Hn2kztOWT5e1BQpv)Uk=1oKDW?%9! z45POMklQc-q5ggyzSw#OI2zvm!}C4W??C!E5goD}A2?+Zp`B1fAuWcO3GNlc)PCC0 sjeib8=1n;=VNG5A8lC5y2>5XR0koxs7960U)Bpeg07*qoM6N<$f@=J^;s5{u literal 0 HcmV?d00001 diff --git a/images/button-html5.png b/images/button-html5.png new file mode 100755 index 0000000000000000000000000000000000000000..f7b068811dd47da122d16ade76d538978227a71b GIT binary patch literal 305 zcmV-10nYx3P)IWd0000mP)t-sho{Ip zYNM~h)*4Qc_WAo>hqdYM^3L7rtgf)$-`>j3(%R(iP*6~2W@i8Y|A~%y(RKvh0002I zNkl+|Hj5M6Mh{;k4Okxsi=XBVy#A2_RhgKi z1^~~iAGrrYm;p`^nD}+Bb?kxDhKEp1Rdg&JR~E?o;XUiMKD>Y)kzy0kOxQc=e1cWH z%B}VWszD+G3Bx!ZOR0Gm|NMuXW>Awxhc!OH5*}63J4g>}&7>vOI?3bs9b~n4P=y&# zfyn5+pJQ*!p!3-o_#CPlkQak}ZA+Bj@Y5&t0{{R2q*;g6u z>$(gmp6Kb~7*fIbbdn=ig8>iA?T`QKrx{H@daQX;_YRfWlMgG%{#|IwZSlHb&x!Je z4Y!iHOCC!+2$H^VQHNLX*er%T*W4MlC-ZljuW77mO_ADlo=5i3wqNZN98MV3*S4>f bd~3;Q70byob83|b&@u*3S3j3^P6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/favicon.ico b/images/favicon.ico old mode 100644 new mode 100755 diff --git a/images/license.txt b/images/license.txt new file mode 100755 index 0000000..7d12604 --- /dev/null +++ b/images/license.txt @@ -0,0 +1,5 @@ +Icons for: sitetools.png +Icon set: Dusseldorf +Designer: pc.de +License: Creative Commons Attribution License [http://creativecommons.org/licenses/by/3.0/] +URL: http://pc.de/icons/#Dusseldorf diff --git a/images/logo.png b/images/logo.png new file mode 100755 index 0000000000000000000000000000000000000000..a1f4995691b91ac58ad41c46f1279b2194000c5c GIT binary patch literal 3744 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 KMNUMnLSTZihC~+t literal 0 HcmV?d00001 diff --git a/images/page-background.svg b/images/page-background.svg new file mode 100755 index 0000000..086341d --- /dev/null +++ b/images/page-background.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/images/page-gradient.png b/images/page-gradient.png new file mode 100755 index 0000000000000000000000000000000000000000..38c74198a9d808cca2d9437903cf7584003d3cc5 GIT binary patch literal 209 zcmV;?051QDP)@op$Td0Ai>ljm;eJH!7z-D91ISDEAL{M0 zQ*esalC)&BIHvSO#xey`T(*nsZ>F%MxQvY)b_hEvKbC#mN4~3zu?{(Gk@s%7n@EEB zSf+gYnC))gtHD%~tb00000 LNkvXXu0mjf(p*!Y literal 0 HcmV?d00001 diff --git a/images/pagetools-build.php b/images/pagetools-build.php new file mode 100755 index 0000000..42e5bc0 --- /dev/null +++ b/images/pagetools-build.php @@ -0,0 +1,121 @@ + + * @deprecated 2018-06-15 we no longer use PNG based icons + * @todo Maybe add some more error checking + */ +$GAMMA = 0.8; +$OPTIPNG = '/usr/bin/optipng'; + +if('cli' != PHP_SAPI) die('please run from commandline'); + +// load input images +$input = glob('pagetools/*.png'); +sort($input); +$cnt = count($input); +if(!$cnt){ + die("No input images found. This script needs to be called from within the image directory!\n"); +} + +// create destination image +$DST = imagecreatetruecolor(30,$cnt*45*2); +imagesavealpha($DST, true); +$C_trans = imagecolorallocatealpha($DST, 0, 0, 0, 127); +imagefill($DST, 0, 0, $C_trans); + +// load highlight color from style.ini +$ini = parse_ini_file('../style.ini',true); +$COLOR = hex2rgb($ini['replacements']['__link__']); +$C_active = imagecolorallocate($DST, $COLOR['r'],$COLOR['g'],$COLOR['b']); + +// add all the icons to the sprite image +for($i=0; $i<$cnt; $i++){ + $base = $i*90; + + $IN = imagecreatefrompng($input[$i]); + imagesavealpha($IN, true); + imagecolorscale($IN,$GAMMA); + imagecopy($DST,$IN, 0,$base, 0,0, 30,30); + imagedestroy($IN); + + $IN = imagecreatefrompng($input[$i]); + imagesavealpha($IN, true); + imagecolorscale($IN,$GAMMA); + imagecopy($DST,$IN, 0,$base+45, 0,0, 30,30); + imagedestroy($IN); + + imagelayereffect($DST, IMG_EFFECT_OVERLAY); + imagefilledrectangle($DST, 0,$base+45, 30,$base+45+30, $C_active); + imagelayereffect($DST, IMG_EFFECT_NORMAL); +} + +// output sprite +imagepng($DST,'pagetools-sprite.png'); +imagedestroy($DST); + +// optimize if possible +if(is_executable($OPTIPNG)){ + system("$OPTIPNG -o5 'pagetools-sprite.png'"); +} + +/** + * Convert a hex color code to an rgb array + */ +function hex2rgb($hex) { + // strip hash + $hex = str_replace('#', '', $hex); + + // normalize short codes + if(strlen($hex) == 3){ + $hex = substr($hex,0,1). + substr($hex,0,1). + substr($hex,1,1). + substr($hex,1,1). + substr($hex,2,1). + substr($hex,2,1); + } + + // calc rgb + return ['r' => hexdec(substr($hex, 0, 2)), 'g' => hexdec(substr($hex, 2, 2)), 'b' => hexdec(substr($hex, 4, 2))]; +} + +/** + * Scale (darken/lighten) a given image + * + * @param resource $img The truetype GD image to work on + * @param float $scale Scale the colors by this value ( <1 darkens, >1 lightens) + */ +function imagecolorscale(&$img, $scale){ + $w = imagesx($img); + $h = imagesy($img); + + imagealphablending($img, false); + for($x = 0; $x < $w; $x++){ + for($y = 0; $y < $h; $y++){ + $rgba = imagecolorat($img, $x, $y); + $a = ($rgba >> 24) & 0xFF; + $r = ($rgba >> 16) & 0xFF; + $g = ($rgba >> 8) & 0xFF; + $b = $rgba & 0xFF; + + $r = max(min(round($r*$scale),255),0); + $g = max(min(round($g*$scale),255),0); + $b = max(min(round($b*$scale),255),0); + + $color = imagecolorallocatealpha($img, $r, $g, $b, $a); + imagesetpixel($img, $x, $y, $color); + } + } + imagealphablending($img, true); +} + diff --git a/images/pagetools-sprite.png b/images/pagetools-sprite.png new file mode 100755 index 0000000000000000000000000000000000000000..8e7f7f876b60b531bf13a32bfc800eee88d53c07 GIT binary patch literal 7759 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 literal 0 HcmV?d00001 diff --git a/images/pagetools/00_default.png b/images/pagetools/00_default.png new file mode 100755 index 0000000000000000000000000000000000000000..bcb2de0f8b6c775715495a66e023b5db0d612787 GIT binary patch literal 494 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TGy8?VdT>t<7|L)Vb=Wjl}e*fje z=kH&?|GNM5-IG@zzyJLG_wT>EPu>EhzI^-n@8ACyZ$E$j`t!lFcaL9u`0?xa?>~Qm zvJaoX2Pyzcy?XcMWy%pixg= zegvw48v=C3+YeuXP69dxXy9j{f!}_9`~C~)9-z5ElY#a^%sHw3-w5anwUQveU_xt`d zx&Mp%O?vij*81bV@bx~sJ9&(bGcN{9rY_L5uQ~PM`$Q_DMv3<$Az>8$OpcC0QxQQ!cw>vbYP}8bf8($Q9lOiM;Q4F*n$Z6ssD zQ=rtg#w)5u-wifhr^>qF>|7Bt_TsG6gHn@o7|lbQAm;TxRzMXeXFhO7r?l__&UF9Y zd2=12j6TCe0L#bz#P~7=RN~sVGrq!TE^@vkn$}QNw*r^}`~6@5EZ=ZS&bO24 zE+bF?GhiR^WfWdvG#8Ds7Q3!v3(t_T1}rx?&S{K&tbi(m3#DdTYPrE_VNu60cIv_o z{2o?-c>r6~FN5}{r!6Pt2M_`1G!U&##@3zo}_1qI?{+0C)|7|$U3mL{aKW`F#d=6(n0$0Y!d|Pr4FTIfO9%*)T*qB;b$6AmKO||0K0%ylW`BDxmt8oxU7ua78L^~z%DXYfcYJc z_ChJjPWOgQ-Ht#8On_a$?I`SFG}lhFGVMM_M11gx>$;{6KF0$TV19#j^5sc;G{T-k zU;$JZER>qMQgaWZY=h_N&VaTX zgD|C45D9d(NMD=l%aabF_fMPMFz(We4rQP`Uu(Kq24bJi9YXP(&*3C1oG8i3Mlp@1 zS9AaD(BG+r4rh$~rXAYcI8#g`=exI;b<$xN=q0}CIW`S|!^( S?q)&&0000a{!e@a|G&Y<=1FkgG*2FIok8C<_)s?jtB=k6cxSntHvJ3|6$sk^e>bIdtte;xN}m=i9e|DCqGy}yFy%R*rJ zsz|!3^aXKm7Os_=68`zc4+wkkm#`y!u&uz5bhX_xv$!|YPWrekqQ8E*R-4jCvA?@~ zBQPXwU2NJtGmC%E=uso2_ls>mbUc_{_=x$<<62;tcU7(3a~X$OzlUhjx0-$U5Ox$@ z-LEoexbOO5J)X zoa5}`Dv#+2Y~cQB!Mq?o=8~5SUoh(=FWo;Wn3u#)Wm0f>flg&oFfWUr%B0|n%iK@p erc<$e0uTr^Q(7XUcdkH=EK*wAHTi( z^zFmv?;pQ>|Md08=Wjp1eE<3F`!Aqgpe~?kK%;<$0L=#ipiya0qW1%><|_&E3ucg) z*Vp&=@9#f<{{H*-%O3To0%eLlT^vIyZtcCio2$V1U;I(MaV)q+eK};>#}_UGfVV}k{8+B^NsEK z8|;5z%@P~u9@!%mjS|rvAGr+k6pu+C+0hoXZd?772dd&fXXp5^a@lVLTF>C=>gTe~ HDWM4f(mA;> literal 0 HcmV?d00001 diff --git a/images/pagetools/05_source.png b/images/pagetools/05_source.png new file mode 100755 index 0000000000000000000000000000000000000000..dffe1931a2839dcc9cd31f3c6655dcb0a2836384 GIT binary patch literal 478 zcmV<40U`d0P)urND7=__(zz7+^qhth+(2+bsMqz@+y#;c`A*2lflGF25rmEViiHT7D1nE(c@#j}X zs8a6$T*WQ?7fmB_)Lzc7={~}WVw}D#sf)v&Cim^&dm6OQ{k`_j+Dl&)J|2&X9Dxki zqJIvEWDmhpox{!H5EICpdx-2MP~0h8)y=T38<1_9Lv(hSdu4{eGjwpctQxbg8qj^{ z$HEy+;2ERf@UE;aq1@Ml(6G$NEZN}j+pdBLi~gPu4j1oxQ0K6p4-ap)r6uIsGWb=? zjLeb?4zG)yAyDwg#TiYY@Q*9Y--iUU6orKS3`hru#d7@?6Udw!mAwSAo&Rzz+*T39 zJlmd(bKhswB}F8RdP;^d5emI{lnF z{PdJM(`#5fCQd&l8Gf=!W_k^a@g&pZ$qK(^s@Jf1cwK42Hz$7Me&Xi#pTt$eABH0H U47>Vpg8%>k07*qoM6N<$g3wIqUH||9 literal 0 HcmV?d00001 diff --git a/images/pagetools/06_revert.png b/images/pagetools/06_revert.png new file mode 100755 index 0000000000000000000000000000000000000000..18c6444744c7f03b1789b25c1be0182408caa6ed GIT binary patch literal 462 zcmV;<0WtoGP)1WKR;OPCTU!7F$D9~I z^J*}PUjY8aC;SX=(C`&-DI^RMzFe=0d_v>z!`005V-7ocQE5UCA*q+Hah8`;G6bn!rloLMIgqF}Aw#S_`D>dP! zy(i@hY}O>NcUVfYVw|LfA#|)y>NUZT>K&HOJcxp>^*GIE1YtVJcXgcPZj|H@W`l%l zr*mcqjrm~VW1MNijWv9TQrx@}=Da2}>|t|CAdLEkIU5oh_VE6gXhI|C6Xl#k5VSSC zJDjHk!Fe{!8IK_N*6@}gf)J9j#N@n7XmL8j(%QrULC|E4bB{}gAc)Il3-4pK+DC>U z%<1ljjn6Cc?#!6_ENfU=?IL%%iwvPnLe_^`(0?)xJGra1hIsgCw07*qoM6N<$ Eg5lfP1^@s6 literal 0 HcmV?d00001 diff --git a/images/pagetools/07_revisions.png b/images/pagetools/07_revisions.png new file mode 100755 index 0000000000000000000000000000000000000000..e599d016c4742800404b46eb8b18f2614a9402a1 GIT binary patch literal 769 zcmV+c1OEJpP)&>;17kRU%hc(XewILLN)(Eh{+P9A8OE)F+iyO_64h#NSh^e7;3 zQ11?2Z}$}hgYEvnn;)b@Y*2Qw&+qM7l)cy?@qHku-yFQ!>=Xn(QNeB~dW)}lZ=ZUz z+U%3ACz9yk#d@b9s7cZgRO`(?XLXRia9D}(Z>d-v8RymY$E$zZNFc9@OZis@8#L?e8$MFEb>sBkBK9BmOTYQeDKIE8wk>; z$@(V39*28kD`briX%spgj9$arihh5Y#shPW`!e26BDx3RM0%DA0sG2cPRu zzv|QY_=3Sx#fcr{hLc0tyGdbhCl1n+!SrHFUheZ@eEmzG$7yRBh ze9nIlpDUOSzm>@SK6x4z0_XdD_?wGDb$vH6kieouhQ#OiHN+JxBrwz`U;4b|3iTD& z2)Tgu`QQ3Me|7tu`fKHS2QaU%+wcGU3-g|Tj7+#(Bch(200000NkvXXu0mjf_eX5z literal 0 HcmV?d00001 diff --git a/images/pagetools/08_backlink.png b/images/pagetools/08_backlink.png new file mode 100755 index 0000000000000000000000000000000000000000..aa34e27750dd2034a32a17a86c85cecbc781c687 GIT binary patch literal 527 zcmV+q0`UEbP)JH4V><~?ch9V@tSDp^$r{89 z4?mgMgN`N8AAXqGm-r43v^`ERgW(ayr-!TNFo9iA#7_%v>wdDUdvikUE?r?fQ^f4y zjdnj_PKX45nUFripom$+>#Ccv6_+3M$o#^<+6VXjOu-5&(zS3Vz0n42Pw54+jCicj-u3UiZ+*seJU3~Aj8$n|+0 z7aly#cOfzVyleWvq6y5e>1EFEDPs0Ni!9mwM*G4i)G)n0uNlHCrW0kFP8Lm)VS1TY zo(T+!m@RxZuVKu*jt-}}yg9Gi%X!TZW;P=$r!WY@f6fIzV_CwI{&<(mlH(&!#k`36v8)O4-zy{fX4g65GqEO5wToT~l56KTvbwa5~TL}f} zr-RM0zE?g-`Y*=t7=G{YKlm8o>+L3#h|qu{O4#Ac<*Ll1f(B5*L$Je5dr?P#hhE?j zpv(@Rn^s+?rkybhBN$l?Qnf;)FZ+nKo0~sM95%=_lL9k z><;Gy$M-2@nBIR!%4drm-qt5Q;WH*kP@a=~uivo4X?N5E2@X?ud_u_6=X-|)^)bWi z?Lj>v90HUDd^GMHB4jbct4%G#9Fsg{G4@^Gz8PMwYyD#OeO(tw`TUgoK8pK$sLKp5 ze(co|;Gq|I1Sqq^-&Q+i9u+iz3Lb(T{<_=>B_cGSh!S@A%VMLyZT#yqhTl8<6P;bu U_|Cr}YXATM07*qoM6N<$f_HwY4*&oF literal 0 HcmV?d00001 diff --git a/images/pagetools/10_top.png b/images/pagetools/10_top.png new file mode 100755 index 0000000000000000000000000000000000000000..b930fd25f1f0a1b5741100ca881444a6a261572b GIT binary patch literal 297 zcmV+^0oMMBP)&lMpB+XCChR!I2P7q~y%Phhy(3C43_>3wQhDBjE?h)x)7X zBm~k-uNH2@eoBZixj0<6-Gp!ke|ETRf+wk(fLPoK`RH&_hkFvj1?J?U!g;lu(bFj@ zchFG!Wj9m8x~yoSG5PT(Z=f*=ud^B&lkjR=L1Pkr-;~gpgqQ0A8k6v1l|y3^e*F+= vOu{d30*y&{zRaL82|q8k(A;p?z!?4n8+$YI=NBuM00000NkvXXu0mjf!?b^| literal 0 HcmV?d00001 diff --git a/images/pagetools/11_mediamanager.png b/images/pagetools/11_mediamanager.png new file mode 100755 index 0000000000000000000000000000000000000000..71b5a3372321c7393120c1ab41e8b674e4dfb883 GIT binary patch literal 320 zcmV-G0l)r^|$3jREDM%? z=$ZyQ8RN4w=N{bDY0;_E>w1;ph*-9qG-vZ&5Raetgph6!9T$sD;Fk5%hJFgygnka! zfR=+V{b2Os+~YV&#cXjdz_uw=(#3@+UNRv>ImcW`1cS1vMeb`TNZz>Z7A4;V=1g3T zDS#S`1_CR5m5B|g;M*jwztz%Et7Y@Jn#46FMnhmM+v?ReL<4+{RvXa&{hdzb2nW1(D literal 0 HcmV?d00001 diff --git a/images/pagetools/12_back.png b/images/pagetools/12_back.png new file mode 100755 index 0000000000000000000000000000000000000000..6d6093ed6bb84509e772b7b8584b33c8c2051a74 GIT binary patch literal 288 zcmV+*0pI?KP)zllEOz;>b1b=+8^8(;0j<5$u zcsoNUui80T2%4PXvhEGV1Z~c+t-5!@9-QI4YJ>d{1zePZnKz_pF>r$A{)W+m5 mEIv|elArvfA69aNkMJLH);B{z8_V$k0000?V#XK6YZZfx6n}JkG%me(n|_L2fdJis~*_uKIeR49-l3Y(T|vo-U3d6^y#aL;08j z8IE2!cvo`zy}#=xne6#zvb@Vw^CYLmH?O+Nb@2s1i<5jV-Oo&Mm7Oj5^qAzFVdQ I&MBb@033WS-v9sr literal 0 HcmV?d00001 diff --git a/images/toc-bullet.png b/images/toc-bullet.png new file mode 100755 index 0000000000000000000000000000000000000000..a2dfa47e9d874b54a27cf5e1d7b5e0c47ab323ec GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1p#0(_&p3JWWQk(%kA+A9B?%lh)ckh-GG>`^z z7)yfuf*Bm1-ADs+#5`RbLn;`PA0#APNJ@yf#-P%e!@s;A@9iu$pb7?0S3j3^ HP6~fV literal 0 HcmV?d00001 diff --git a/images/usertools.png b/images/usertools.png new file mode 100755 index 0000000000000000000000000000000000000000..68102271f2131ca21e3a4a28c52db559f7963fbe GIT binary patch literal 1428 zcmXX^eN59=6#W&dvZABRmW|3-sU%XwO$XV!EP{MVn+Vg6Y#}qGlL?I*7|}rmw+xU8 zG93yVL|omFx~Pme2wxRS3zX6ZC}m9x4d0_wu%!hG{exxfgx_A$_d9*}ymQaJ_m!Vc zN!mwa(FlUrC*UUt@ulNe>En(4ys93wKYWDZZ|O2;^Ja|f4^F-w%Ker$C{m;-Q3)?SS(7Va(Q_f*JoyC=H})) zJ3F0D=hD*B(9jTMS65d_{?ybIfI^`lqZ*B-r>6(EMn^}%QK?iAK?-Oh1g6z$#lEt# z0vZ4eV0Sni;0z25APa6G1b{+%dwY=!WReCaP=-}_8yp-27#SJCbztlu<084EB2))W zoFgN$<1hHb!^2R(A@=$Cd63Z%+(L`U60n1b{s4dmK>7q97(PjYUayA-;OXgU)Tq^J z(ISX|j1XjD7$)p_}9XP=v6>t|EG?4rY zdkB%1c32)*A^`{xAu--065%~8EG*zT!76Cz9$p~kg^r<8D36bi<5^BjOrT?9V`CU1 z+KbnPrlFrkqY=YG)kudbU<}U#Suk0$nHVnVA9bNE7zgaVysGv`ddd}H%E!cs#qmsn z@QM>8#HLCp4r7d%k^F{cb*9k85kJfc2|sr*ulU!}WIEOV2!mm#GMTN-&2&`^JC8== zdWCSfrvmwm5>8K|zWG?TYBO3Ly>;#Le0i+4GS+%r zDg8U*miCW_ZRhpTHOCUn6JKUue%fl&_~bNN*zKz2Jqg=s&!arqIa*7W52M^;Bf8w_ ze9G;#$oiubl={{H>QeUkt5VrpO5eFsE0cOC@&1MIL%IHjP(j$+_P8palW8np&bu@8 z;KV3}BpHeNxfTa-T;eeM`3pm8Au=(CaTUXai@~KP6ICRGPq0Bu%cBi30eK zZrl`!S>+9X=7h=nOiixxAA~wyXT{yB*Pb(KH*8MnQ}!B7bceyeKGrhKOWHay5?IZn z%HlGsALVi~%GS77_A;`)U!>K9l<1gVg}bw3A3xZou&S>48RFZ5qdl&lKVsAC{Nin_ zzD_2gX?=6)EbHJWPHLXyo4q2vGT7ng?Tq^UGiu{5iOx%O%Y4ohEa`7PP|MByZmYMZ zD3Y^3EV(R*`Ybf6OkCMeG~1TnaIdHCW{@YuviX;PAjixr9jkli>r2Az0)juCekA?D aN%x-jW%~NI+ss)!Ekcl(lF$? + * @author Jürgen Fredriksson + * @author Anika Henke + */ +$lang['home'] = 'Startseite'; +$lang['__background_site__'] = 'Farbe für den Seitenhintergrund (hinter dem Inhaltsbereich)'; +$lang['__link__'] = 'Allgemeine Linkfarbe'; +$lang['__existing__'] = 'Farbe für Links zu existierenden Seiten'; +$lang['__missing__'] = 'Farbe für Links zu nicht-existierenden Seiten'; +$lang['__site_width__'] = 'Breite der ganzen Seite (kann eine beliebige Längeneinheit sein: %, px, em, ...)'; +$lang['__sidebar_width__'] = 'Breite der Seitenleiste, falls vorhanden (kann eine beliebige Längeneinheit sein: %, px, em, ...)'; +$lang['__tablet_width__'] = 'Unter dieser Fensterbreite wechselt die Seite in den Tabletmodus'; +$lang['__phone_width__'] = 'Unter dieser Fensterbreite wechselt die Seite in den Handymodus'; +$lang['__theme_color__'] = 'Farbschema der Webapplikation'; diff --git a/lang/de/settings.php b/lang/de/settings.php deleted file mode 100644 index 6eb3c99..0000000 --- a/lang/de/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - -*/ - -$lang['__existing__'] = '既存ページへのリンク色'; -$lang['__missing__'] = '存在しないページへのリンク色'; -$lang['__site_width__'] = 'サイトの全体幅(任意の長さの単位を使用可能: % px em 他)'; -$lang['__sidebar_width__'] = 'サイドバーがある場合、サイドバーの幅(任意の長さの単位を使用可能: % px em 他)'; diff --git a/lang/ja/settings.php b/lang/ja/settings.php deleted file mode 100644 index 89534db..0000000 --- a/lang/ja/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - -*/ - -$lang['hideTools'] = 'ログインしていない場合、ツールを隠す'; diff --git a/lang/ja/style.txt b/lang/ja/style.txt deleted file mode 100644 index bf5801f..0000000 --- a/lang/ja/style.txt +++ /dev/null @@ -1,4 +0,0 @@ -ファビコンを変更したい場合、メディア管理を利用して ''wiki'' またはルート名前空間に ''favicon.ico'' をアップロードして下さい。 -自動的にその画像を使用します。 -アクセス制限のある wiki を使用している場合、アクセスコントロール管理で ''wiki''(またはルート)名前空間を全員読取可に設定して下さい。 -そうでないとログインしていないユーザーにファビコンが表示されません。 diff --git a/lang/ko/lang.php b/lang/ko/lang.php deleted file mode 100644 index 0929d3b..0000000 --- a/lang/ko/lang.php +++ /dev/null @@ -1,10 +0,0 @@ - - */ - -$lang['hideTools'] = 'Скрывать инструменты гостям?'; diff --git a/main.php b/main.php old mode 100644 new mode 100755 index 1c027d7..24020a0 --- a/main.php +++ b/main.php @@ -1,175 +1,88 @@ + * @author Clarence Lee * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) */ if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */ -@require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */ -$showTools = !tpl_getConf('hideTools') || ( tpl_getConf('hideTools') && !empty($_SERVER['REMOTE_USER']) ); -$showSidebar = page_findnearest($conf['sidebar']) && ($ACT=='show'); -$sidebarElement = tpl_getConf('sidebarIsNav') ? 'nav' : 'aside'; +$hasSidebar = page_findnearest($conf['sidebar']); +$showSidebar = $hasSidebar && ($ACT == 'show'); ?> - + - + <?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>] - - - - + - -

- - - +
- - -
- + echo ($showSidebar) ? 'showSidebar' : ''; ?> "> -
    -
  • -
+ -
-
-
+
- -
- - - - < id="dokuwiki__aside" class="aside include group" aria-label=""> -
- + + +
-
- > +
+
-
- - +
+ -
+
+ +
+ + -
- - -
+ -
+
- - -
+
+ + +
+
+ + + - - - - - - -
-
- - - -
+
+
diff --git a/mediamanager.php b/mediamanager.php old mode 100644 new mode 100755 index b412da5..bd29ad3 --- a/mediamanager.php +++ b/mediamanager.php @@ -1,45 +1,44 @@ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) */ + // must be run from within DokuWiki if (!defined('DOKU_INC')) die(); -@require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */ ?> - + - + <?php echo hsc($lang['mediaselect'])?> [<?php echo strip_tags($conf['title'])?>] - - + -
+
-
-
+
-
+
diff --git a/script.js b/script.js old mode 100644 new mode 100755 index bb0a34b..88dae90 --- a/script.js +++ b/script.js @@ -1,49 +1,89 @@ -// template-related scripts go here... +/** + * We handle several device classes based on browser width. + * + * - desktop: > __tablet_width__ (as set in style.ini) + * - mobile: + * - tablet <= __tablet_width__ + * - phone <= __phone_width__ + */ +var device_class = ''; // not yet known +var device_classes = 'desktop mobile tablet phone'; -(function () { - 'use strict'; +function tpl_dokuwiki_mobile(){ - function extractHotkey(linkEl) { - if (!linkEl) return ''; + // the z-index in mobile.css is (mis-)used purely for detecting the screen mode here + var screen_mode = jQuery('#screen__mode').css('z-index') + ''; - // Prefer the human-facing "[X]" in the title when present. - // DokuWiki commonly uses titles like "Edit this page [E]". - var title = linkEl.getAttribute('title') || ''; - var match = title.match(/\[([^\]]+)\]\s*$/); - if (match && match[1]) return match[1].trim(); + // determine our device pattern + // TODO: consider moving into dokuwiki core + switch (screen_mode) { + case '1': + if (device_class.match(/tablet/)) return; + device_class = 'mobile tablet'; + break; + case '2': + if (device_class.match(/phone/)) return; + device_class = 'mobile phone'; + break; + default: + if (device_class == 'desktop') return; + device_class = 'desktop'; + } - var accessKey = linkEl.getAttribute('accesskey') || ''; - if (accessKey) return accessKey.trim().toUpperCase(); + jQuery('html').removeClass(device_classes).addClass(device_class); - return ''; - } + // handle some layout changes based on change in device + var $handle = jQuery('#dokuwiki__aside h3.toggle'); + var $toc = jQuery('#dw__toc h3'); - function prependHotkey(linkEl, hotkey) { - if (!hotkey) return; - if (linkEl.querySelector('.luxtools__hotkey')) return; + if (device_class == 'desktop') { + // reset for desktop mode + if($handle.length) { + $handle[0].setState(1); + $handle.hide(); + } + if($toc.length) { + $toc[0].setState(1); + } + } + if (device_class.match(/mobile/)){ + // toc and sidebar hiding + if($handle.length) { + $handle.show(); + $handle[0].setState(-1); + } + if($toc.length) { + $toc[0].setState(-1); + } + } +} - var label = (linkEl.textContent || '').trim(); - if (!label) return; +jQuery(function(){ + var resizeTimer; + dw_page.makeToggle('#dokuwiki__aside h3.toggle','#dokuwiki__aside div.content'); - linkEl.textContent = ''; + tpl_dokuwiki_mobile(); + jQuery(window).on('resize', + function(){ + if (resizeTimer) clearTimeout(resizeTimer); + resizeTimer = setTimeout(tpl_dokuwiki_mobile,200); + } + ); - var span = document.createElement('span'); - span.className = 'luxtools__hotkey red-168-text'; - span.textContent = hotkey; + // increase sidebar length to match content (desktop mode only) + var sidebar_height = jQuery('.desktop #dokuwiki__aside').height(); + var pagetool_height = jQuery('.desktop #dokuwiki__pagetools ul:first').height(); + // pagetools div has no height; ul has a height + var content_min = Math.max(sidebar_height || 0, pagetool_height || 0); - linkEl.appendChild(span); - linkEl.appendChild(document.createTextNode(' ' + label)); - } + var content_height = jQuery('#dokuwiki__content div.page').height(); + if(content_min && content_min > content_height) { + var $content = jQuery('#dokuwiki__content div.page'); + $content.css('min-height', content_min); + } - document.addEventListener('DOMContentLoaded', function () { - var pagetools = document.getElementById('dokuwiki__pagetools'); - if (!pagetools) return; - - var links = pagetools.querySelectorAll('a'); - for (var i = 0; i < links.length; i++) { - var hotkey = extractHotkey(links[i]); - if (!hotkey) continue; - prependHotkey(links[i], hotkey); - } - }); -})(); + // blur when clicked + jQuery('#dokuwiki__pagetools div.tools>ul>li>a').on('click', function(){ + this.blur(); + }); +}); diff --git a/style.ini b/style.ini old mode 100644 new mode 100755 index 0cbb64d..495e55e --- a/style.ini +++ b/style.ini @@ -1,4 +1,4 @@ -; Please see https://www.php.net/manual/en/function.parse-ini-file.php +; Please see http://php.net/manual/en/function.parse-ini-file.php ; for limitations of the ini format used here ; To extend this file or make changes to it, it is recommended to create @@ -16,38 +16,30 @@ [stylesheets] -css/basic.css = screen +css/basic.less = screen +css/_imgdetail.css = screen +css/_media_popup.css = screen +css/_media_fullscreen.css = screen +css/_fileuploader.css = screen +css/_tabs.css = screen +css/_links.css = screen +css/_toc.css = screen +css/_footnotes.css = screen +css/_search.less = screen +css/_recent.css = screen +css/_diff.css = screen +css/_edit.css = screen +css/_modal.css = screen +css/_forms.css = screen +css/_admin.less = screen +css/structure.less = screen +css/design.less = screen +css/usertools.less = screen +css/pagetools.less = screen +css/content.less = screen -; load styles from the default 'dokuwiki' template -; some of these have been renamed from *.css to *.less -; but .css still loads the same file and is backwards compatible -../dokuwiki/css/_imgdetail.css = screen -../dokuwiki/css/_media_popup.css = screen -../dokuwiki/css/_media_fullscreen.css = screen -../dokuwiki/css/_fileuploader.css = screen -../dokuwiki/css/_tabs.css = screen -../dokuwiki/css/_links.css = screen -../dokuwiki/css/_toc.css = screen -../dokuwiki/css/_footnotes.css = screen -../dokuwiki/css/_search.less = screen -../dokuwiki/css/_recent.css = screen -../dokuwiki/css/_diff.css = screen -../dokuwiki/css/_edit.css = screen -../dokuwiki/css/_modal.css = screen -../dokuwiki/css/_forms.css = screen -../dokuwiki/css/_admin.less = screen - -; load the rest of the styles -css/structure.css = screen -css/design.css = screen -css/content.css = screen -css/includes.css = screen - -; TurboVision / TuiCSS integration overrides (keep last) -css/tuivision.css = screen - -css/mobile.css = all -css/print.css = print +css/mobile.less = all +css/print.css = print ; This section is used to configure some placeholder values used in @@ -62,33 +54,40 @@ css/print.css = print ;------ guaranteed dokuwiki color placeholders that every plugin can use ; main text and background colors -; TurboVision-style dark defaults -__text__ = "#ffffff" ; @ini_text -__background__ = "#000000" ; @ini_background +__text__ = "#333" ; @ini_text +__background__ = "#fff" ; @ini_background ; alternative text and background colors -__text_alt__ = "#c0c0c0" ; @ini_text_alt -__background_alt__ = "#0000a8" ; @ini_background_alt +__text_alt__ = "#999" ; @ini_text_alt +__background_alt__ = "#eee" ; @ini_background_alt ; neutral text and background colors -__text_neu__ = "#ffffff" ; @ini_text_neu -__background_neu__ = "#0000a8" ; @ini_background_neu +__text_neu__ = "#666" ; @ini_text_neu +__background_neu__ = "#ddd" ; @ini_background_neu ; border color -__border__ = "#ffffff" ; @ini_border +__border__ = "#ccc" ; @ini_border ; highlighted text (e.g. search snippets) -__highlight__ = "#ffff00" ; @ini_highlight +__highlight__ = "#ff9" ; @ini_highlight -; link color -__link__ = "#00ffff" ; @ini_link +; default link color +__link__ = "#2b73b7" ; @ini_link + +__luxtools_locationlink__ = "#b57d35" ; @ini_luxtools_locationlink ;-------------------------------------------------------------------------- -; these are used for other links -__existing__ = "#00ff00" ; @ini_existing -__missing__ = "#ff5555" ; @ini_missing +__background_site__ = "#fbfaf9" ; @ini_background_site + +; these are used for wiki links +__existing__ = "#080" ; @ini_existing +__missing__ = "#d30" ; @ini_missing + +; site and sidebar widths +__site_width__ = "75em" ; @ini_site_width +__sidebar_width__ = "16em" ; @ini_sidebar_width +; cut off points for mobile devices +__tablet_width__ = "800px" ; @ini_tablet_width +__phone_width__ = "480px" ; @ini_phone_width + +__theme_color__ = "#008800" ; @_ini_theme_color: theme_color of the web app -; widths -__site_width__ = "100%" ; @ini_site_width -__sidebar_width__ = "16em" ; @ini_sidebar_width -; color of the web app (used by the core, not by the template) -__theme_color__ = "#0000a8" ; @ini_theme_color diff --git a/template.info.txt b/template.info.txt old mode 100644 new mode 100755 index 83e368b..0cadb55 --- a/template.info.txt +++ b/template.info.txt @@ -1,7 +1,7 @@ -base starter -author Anika Henke -email anika@selfthinker.org -date 2024-01-21 -name Starter Template -desc The template that gets you started -url https://www.dokuwiki.org/template:starter +base dokuwiki +author luxick +email git@luxick.de +date 2026-01-30 +name luxtools DokuWiki Template +desc Template specifically designed to be compatible with the luxtools suite of DokuWiki plugins. +url https://git.luxick.de/luxick/luxtools-template diff --git a/tpl_footer.php b/tpl_footer.php new file mode 100755 index 0000000..b892ba8 --- /dev/null +++ b/tpl_footer.php @@ -0,0 +1,34 @@ + + + +
+ + +
+ + >Donate + >Powered by PHP + >Valid HTML5 + >Valid CSS + >Driven by DokuWiki +
+ + +
diff --git a/tpl_functions.php b/tpl_functions.php deleted file mode 100644 index 8031fe6..0000000 --- a/tpl_functions.php +++ /dev/null @@ -1,47 +0,0 @@ - would be: tpl_action('edit', 0, 'li') */ - tpl_toolsevent('usertools', array( - 'admin' => tpl_action('admin', 1, 'li', 1), - 'profile' => tpl_action('profile', 1, 'li', 1), - 'register' => tpl_action('register', 1, 'li', 1), - 'login' => tpl_action('login', 1, 'li', 1), - )); -} - -function _tpl_sitetools() { - tpl_toolsevent('sitetools', array( - 'recent' => tpl_action('recent', 1, 'li', 1), - 'media' => tpl_action('media', 1, 'li', 1), - 'index' => tpl_action('index', 1, 'li', 1), - )); -} - -function _tpl_pagetools() { - tpl_toolsevent('pagetools', array( - 'edit' => tpl_action('edit', 1, 'li', 1), - 'revisions' => tpl_action('revisions', 1, 'li', 1), - 'backlink' => tpl_action('backlink', 1, 'li', 1), - 'subscribe' => tpl_action('subscribe', 1, 'li', 1), - 'revert' => tpl_action('revert', 1, 'li', 1), - 'top' => tpl_action('top', 1, 'li', 1), - )); -} - -function _tpl_detailtools() { - echo tpl_action('mediaManager', 1, 'li', 1); - echo tpl_action('img_backto', 1, 'li', 1); -} diff --git a/tpl_header.php b/tpl_header.php new file mode 100755 index 0000000..9eb6088 --- /dev/null +++ b/tpl_header.php @@ -0,0 +1,88 @@ + + + +
+ + + +
+
    +
  • +
+ +

' . + '' . $conf['title'] . '', + 'accesskey="h" title="' . tpl_getLang('home') . ' [h]"' + ); + ?>

+ +

+ +
+ +
+ + +
+

+
    + '; + tpl_userinfo(); /* 'Logged in as ...' */ + echo ''; + } + echo (new \dokuwiki\Menu\UserMenu())->getListItems('action '); + ?> +
+
+ + + +
+

+ +
+ getDropdown($lang['tools']); ?> +
+
    + getListItems('action ', false); ?> +
+
+ +
+ + + + + + +
+