From b42988a24449c5be544c3f50d8ecc6478e694f97 Mon Sep 17 00:00:00 2001 From: lioff Date: Thu, 29 Jun 2017 23:48:13 +0200 Subject: [PATCH] fix typo in markup to repair code block the code block was invisible through the typo: https://docs.nextcloud.com/server/12/developer_manual/core/theming.html#changing-the-default-colours --- developer_manual/core/theming.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/developer_manual/core/theming.rst b/developer_manual/core/theming.rst index f16c26c42..4d220718a 100644 --- a/developer_manual/core/theming.rst +++ b/developer_manual/core/theming.rst @@ -114,13 +114,13 @@ Changing the default colours You can inject custom variables into the SCSS generator to apply colors to the default css code by adding the following method to defaults.php: -.. code-clock:: php +.. code-block:: php - public function getScssVariables() { - return [ - 'color-primary' => '#745bca' - ]; - } + public function getScssVariables() { + return [ + 'color-primary' => '#745bca' + ]; + } The following variables can be overwritten: