Last modified by chrisby on 2024/03/30 17:19

From version 4.4
edited by chrisby
on 2024/03/30 15:40
Change comment: There is no comment for this version
To version 3.9
edited by chrisby
on 2023/11/18 14:57
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -25,7 +25,7 @@
25 25  
26 26  ###### Enable justification in editor
27 27  
28 -* Editing > WYSIWYG Editor
28 +* Editing > WYSIWYG Editor >
29 29   * Default WYSIWYG Editor > CKEditor > Save (Note: There are two "Save" buttons on this page.)
30 30   * CKEditor > Disables Plugins > Open selection of disabled plugins > uncheck "justify" plugin > click on "Save" button **below**
31 31  
... ... @@ -61,49 +61,29 @@
61 61  ###### Adapt the footer - Hide XWiki version and add copyright information.
62 62  
63 63  * Look & Feel > Presentation > Footer > Here you can find the fields "Copyright" and "Version".
64 -* Since an empty "Version" field results in the current XWiki version being displayed, I left the "Copyright" field empty and entered the license in the "Version" field. Here are two examples when using Markdown syntax as described above:The contents of this website are available under the [CC0 1.0 Universal license](https://creativecommons.org/publicdomain/zero/1.0/deed.en); additional terms may apply.
64 +* Since an empty "Version" field results in the current XWiki version being displayed, I left the "Copyright" field empty and entered the license in the "Version" field. Here are two examples when using Markdown syntax as described above:
65 65  
66 +```
67 +The contents of this website are available under the [CC0 1.0 Universal license](https://creativecommons.org/publicdomain/zero/1.0/deed.en); additional terms may apply.
68 +The contents of this website are available under the [Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/); additional terms may apply.
69 +```
70 +
66 66  ###### **Dark Theme**
67 67  
68 -* Look & Feel > Themes > Color Theme
73 +* Look & Feel > Themes > Color Theme > COLOR_THEMES
69 69   * Manage Color Themes > "Darkly" Theme > Use this theme
70 70   * Customize > Advanced > Add the following code at the end and then "Save & View":
71 71  
72 - // Own customizations
73 - // .code span, // concerns code in 'code' macro
74 - #var-lessCode,
75 - #adminsearchmenu,
76 - .macro-parameter-field textarea,
77 - .form-control, // concerns credentials in login screen
78 - .xwikipaneltitle {
79 - color: white !important;
80 - }
81 -
82 - // Global search bar at the upper right has a white background by default, so the white default font would not make sense here.
83 - #headerglobalsearchinput {
84 - color: black !important;
85 - }
86 -
87 - // Removes white shadow from text in navigation menu
88 - .jstree-anchor {
89 - text-shadow: none !important;
90 - }
91 -
92 - h1, h2, h3, h4, h5, h6 { // All headings in pages
93 - color: orange !important;
94 - }
95 -
96 - #menu-horizontal-Menu-Header-Menu-WebHome a, // The menu below the Crispy Coding header with logo.
97 - .breadcrumb a { // breadcrumb links at the top of every page and in search results
98 - color: #0ce3ac !important;
99 - }
100 -
101 - strong, // all bold text in articles
102 - .search-text-highlight { // Highlight searched words in articles when using the global search bar in the upper right corner.
103 - color: #33ccff !important;
104 - }
105 -
106 - // When being in 'source' mode in editor.
107 - #cke_1_contents textarea {
108 - background-color: #333333 !important;
109 - }
77 +```CSS
78 +// Own customizations
79 +#var-lessCode,
80 +.macro-parameter-field textarea,
81 +.code span,
82 +.xwikipaneltitle {
83 + color: white !important;
84 +}
85 +
86 +h1, h2, h3, h4, h5, h6 {
87 + color: orange !important;
88 +}
89 +```