Changes for page Most Important Configurations
Last modified by chrisby on 2024/03/30 17:19
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -27,7 +27,7 @@ 27 27 28 28 * Editing > WYSIWYG Editor 29 29 * Default WYSIWYG Editor > CKEditor > Save (Note: There are two "Save" buttons on this page.) 30 - * CKEditor > Disables Plugins > Open selection of disabled plugins > uncheck "justify" plugin > click on "Save" button at thebottom30 + * CKEditor > Disables Plugins > Open selection of disabled plugins > uncheck "justify" plugin > click on "Save" button **below** 31 31 32 32 ###### Disable registration of new accounts 33 33 ... ... @@ -61,59 +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. 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 -Here is an example: 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 +``` 67 67 68 - The contents of this websiteareavailable under the<a href="https://creativecommons.org/publicdomain/zero/1.0/deed.en">CC0 1.0 Universal license</a>; additional terms may apply.71 +###### **Dark Theme** 69 69 70 -###### Hide Personal Profile Data 71 - 72 -* Users & Rights > 73 - 74 -###### Dark Theme 75 - 76 -* Look & Feel > Themes > Color Theme 73 +* Look & Feel > Themes > Color Theme > COLOR_THEMES 77 77 * Manage Color Themes > "Darkly" Theme > Use this theme 78 - * Customize > Advanced > Add the code below at the end and then "Save & View":75 + * Customize > Advanced > Add the following code at the end and then "Save & View": 79 79 80 -Additional CSS:: 77 +```CSS 78 +// Own customizations 79 +#var-lessCode, 80 +.macro-parameter-field textarea, 81 +.code span, 82 +.xwikipaneltitle { 83 + color: white !important; 84 +} 81 81 82 - // Own customizations 83 - // .code span, // concerns code in 'code' macro 84 - #var-lessCode, 85 - #adminsearchmenu, 86 - .macro-parameter-field textarea, 87 - .form-control, // concerns credentials in login screen 88 - .xwikipaneltitle { 89 - color: white !important; 90 - } 91 - 92 - // Global search bar at the upper right has a white background by default, so the white default font would not make sense here. 93 - #headerglobalsearchinput { 94 - color: black !important; 95 - } 96 - 97 - // Removes white shadow from text in navigation menu 98 - .jstree-anchor { 99 - text-shadow: none !important; 100 - } 101 - 102 - h1, h2, h3, h4, h5, h6 { // All headings in pages 103 - color: orange !important; 104 - } 105 - 106 - #menu-horizontal-Menu-Header-Menu-WebHome a, // The menu below the Crispy Coding header with logo. 107 - .breadcrumb a { // breadcrumb links at the top of every page and in search results 108 - color: #0ce3ac !important; 109 - } 110 - 111 - strong, // all bold text in articles 112 - .search-text-highlight { // Highlight searched words in articles when using the global search bar in the upper right corner. 113 - color: #33ccff !important; 114 - } 115 - 116 - // When being in 'source' mode in editor. 117 - #cke_1_contents textarea { 118 - background-color: #333333 !important; 119 - } 86 +h1, h2, h3, h4, h5, h6 { 87 + color: orange !important; 88 +} 89 +```