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

From version 3.9
edited by chrisby
on 2023/11/18 14:57
Change comment: There is no comment for this version
To version 3.12
edited by chrisby
on 2024/03/29 15:44
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  
... ... @@ -70,20 +70,45 @@
70 70  
71 71  ###### **Dark Theme**
72 72  
73 -* Look & Feel > Themes > Color Theme > COLOR_THEMES
73 +* Look & Feel > Themes > Color Theme
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 -#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 -```
77 + // Own customizations
78 + // .code span, // concerns code in 'code' macro
79 + #var-lessCode,
80 + #adminsearchmenu,
81 + .macro-parameter-field textarea,
82 + .form-control, // concerns credentials in login screen
83 + .xwikipaneltitle {
84 + color: white !important;
85 + }
86 +
87 + // Global search bar at the upper right has a white background by default, so the white default font would not make sense here.
88 + #headerglobalsearchinput {
89 + color: black !important;
90 + }
91 +
92 + // Removes white shadow from text in navigation menu
93 + .jstree-anchor {
94 + text-shadow: none !important;
95 + }
96 +
97 + h1, h2, h3, h4, h5, h6 { // All headings in pages
98 + color: orange !important;
99 + }
100 +
101 + #menu-horizontal-Menu-Header-Menu-WebHome a, // The menu below the Crispy Coding header with logo.
102 + .breadcrumb a { // breadcrumb links at the top of every page and in search results
103 + color: #0ce3ac !important;
104 + }
105 +
106 + strong, // all bold text in articles
107 + .search-text-highlight { // Highlight searched words in articles when using the global search bar in the upper right corner.
108 + color: #33ccff !important;
109 + }
110 +
111 + // When being in 'source' mode in editor.
112 + #cke_1_contents textarea {
113 + background-color: #333333 !important;
114 + }