Fix: Missing --text-color-default CSS variable (#7104)

* Fix: Missing --text-color-default CSS variable

* Add PR ID to changelog
This commit is contained in:
Marc Farré 2024-07-03 12:35:29 +02:00 committed by GitHub
parent 9c30e05316
commit 9c7d74d054
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 42 additions and 40 deletions

View File

@ -4,6 +4,7 @@ HumHub Changelog
1.16.2 (Unreleased) 1.16.2 (Unreleased)
--------------------- ---------------------
- Fix #7102: Fix content search with word ending with hyphen - Fix #7102: Fix content search with word ending with hyphen
- Fix #7104: Missing `--text-color-default` CSS variable
1.16.1 (July 1, 2024) 1.16.1 (July 1, 2024)
--------------------- ---------------------

View File

@ -100,47 +100,48 @@
// CSS Variables // CSS Variables
:root { :root {
// Colors for buttons status etc. // Colors for buttons status etc.
--default: @default; --default: @default;
--primary: @primary; --primary: @primary;
--info: @info; --info: @info;
--success: @success; --success: @success;
--warning: @warning; --warning: @warning;
--danger: @danger; --danger: @danger;
--link: @link; --link: @link;
// Text colors // Text colors
--text-color-main: @text-color-main; --text-color-main: @text-color-main;
--text-color-secondary: @text-color-secondary; --text-color-default: @text-color-default;
--text-color-highlight: @text-color-highlight; --text-color-secondary: @text-color-secondary;
--text-color-soft: @text-color-soft; --text-color-highlight: @text-color-highlight;
--text-color-soft2: @text-color-soft2; --text-color-soft: @text-color-soft;
--text-color-soft3: @text-color-soft3; --text-color-soft2: @text-color-soft2;
--text-color-contrast: @text-color-contrast; --text-color-soft3: @text-color-soft3;
--text-color-contrast: @text-color-contrast;
// Background colors // Background colors
--background-color-main: @background-color-main; --background-color-main: @background-color-main;
--background-color-secondary: @background-color-secondary; --background-color-secondary: @background-color-secondary;
--background-color-page: @background-color-page; --background-color-page: @background-color-page;
--background-color-highlight: @background-color-highlight; --background-color-highlight: @background-color-highlight;
--background-color-highlight-soft: @background-color-highlight-soft; --background-color-highlight-soft: @background-color-highlight-soft;
--background3: @background3; --background3: @background3;
--background4: @background4; --background4: @background4;
// Bootstrap Alert boxes // Bootstrap Alert boxes
// Success // Success
--background-color-success: @background-color-success; --background-color-success: @background-color-success;
--text-color-success: @text-color-success; --text-color-success: @text-color-success;
--border-color-success: @border-color-success; --border-color-success: @border-color-success;
// Warning // Warning
--background-color-warning: @background-color-warning; --background-color-warning: @background-color-warning;
--text-color-warning: @text-color-warning; --text-color-warning: @text-color-warning;
--border-color-warning: @border-color-warning; --border-color-warning: @border-color-warning;
// Danger // Danger
--background-color-danger: @background-color-danger; --background-color-danger: @background-color-danger;
--text-color-danger: @text-color-danger; --text-color-danger: @text-color-danger;
--border-color-danger: @border-color-danger; --border-color-danger: @border-color-danger;
// Fonts // Fonts
--mail-font-family: @mail-font-family; --mail-font-family: @mail-font-family;
} }

File diff suppressed because one or more lines are too long