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

From version 4.1
edited by chrisby
on 2024/03/29 15:44
Change comment: Rollback to version 3.11
To version 4.2
edited by chrisby
on 2024/03/30 15:39
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -63,10 +63,7 @@
63 63  * Look & Feel > Presentation > Footer > Here you can find the fields "Copyright" and "Version".
64 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 -```
66 + The contents of this website are available under the <a href="https://creativecommons.org/publicdomain/zero/1.0/deed.en">CC0 1.0 Universal license</a>; additional terms may apply.
70 70  
71 71  ###### **Dark Theme**
72 72  
... ... @@ -74,43 +74,41 @@
74 74   * Manage Color Themes > "Darkly" Theme > Use this theme
75 75   * Customize > Advanced > Add the following code at the end and then "Save & View":
76 76  
77 -```CSS
78 -// Own customizations
79 -// .code span, // concerns code in 'code' macro
80 -#var-lessCode,
81 -#adminsearchmenu,
82 -.macro-parameter-field textarea,
83 -.form-control, // concerns credentials in login screen
84 -.xwikipaneltitle {
85 - color: white !important;
86 -}
87 -
88 -// Global search bar at the upper right has a white background by default, so the white default font would not make sense here.
89 -#headerglobalsearchinput {
90 - color: black !important;
91 -}
92 -
93 -// Removes white shadow from text in navigation menu
94 -.jstree-anchor {
95 - text-shadow: none !important;
96 -}
97 -
98 -h1, h2, h3, h4, h5, h6 { // All headings in pages
99 - color: orange !important;
100 -}
101 -
102 -#menu-horizontal-Menu-Header-Menu-WebHome a, // The menu below the Crispy Coding header with logo.
103 -.breadcrumb a { // breadcrumb links at the top of every page and in search results
104 - color: #0ce3ac !important;
105 -}
106 -
107 -strong, // all bold text in articles
108 -.search-text-highlight { // Highlight searched words in articles when using the global search bar in the upper right corner.
109 - color: #33ccff !important;
110 -}
111 -
112 -// When being in 'source' mode in editor.
113 -#cke_1_contents textarea {
114 - background-color: #333333 !important;
115 -}
116 -```
74 + // Own customizations
75 + // .code span, // concerns code in 'code' macro
76 + #var-lessCode,
77 + #adminsearchmenu,
78 + .macro-parameter-field textarea,
79 + .form-control, // concerns credentials in login screen
80 + .xwikipaneltitle {
81 + color: white !important;
82 + }
83 +
84 + // Global search bar at the upper right has a white background by default, so the white default font would not make sense here.
85 + #headerglobalsearchinput {
86 + color: black !important;
87 + }
88 +
89 + // Removes white shadow from text in navigation menu
90 + .jstree-anchor {
91 + text-shadow: none !important;
92 + }
93 +
94 + h1, h2, h3, h4, h5, h6 { // All headings in pages
95 + color: orange !important;
96 + }
97 +
98 + #menu-horizontal-Menu-Header-Menu-WebHome a, // The menu below the Crispy Coding header with logo.
99 + .breadcrumb a { // breadcrumb links at the top of every page and in search results
100 + color: #0ce3ac !important;
101 + }
102 +
103 + strong, // all bold text in articles
104 + .search-text-highlight { // Highlight searched words in articles when using the global search bar in the upper right corner.
105 + color: #33ccff !important;
106 + }
107 +
108 + // When being in 'source' mode in editor.
109 + #cke_1_contents textarea {
110 + background-color: #333333 !important;
111 + }