mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
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:
parent
9c30e05316
commit
9c7d74d054
@ -4,6 +4,7 @@ HumHub Changelog
|
||||
1.16.2 (Unreleased)
|
||||
---------------------
|
||||
- Fix #7102: Fix content search with word ending with hyphen
|
||||
- Fix #7104: Missing `--text-color-default` CSS variable
|
||||
|
||||
1.16.1 (July 1, 2024)
|
||||
---------------------
|
||||
|
@ -100,47 +100,48 @@
|
||||
|
||||
// CSS Variables
|
||||
:root {
|
||||
// Colors for buttons status etc.
|
||||
--default: @default;
|
||||
--primary: @primary;
|
||||
--info: @info;
|
||||
--success: @success;
|
||||
--warning: @warning;
|
||||
--danger: @danger;
|
||||
--link: @link;
|
||||
// Colors for buttons status etc.
|
||||
--default: @default;
|
||||
--primary: @primary;
|
||||
--info: @info;
|
||||
--success: @success;
|
||||
--warning: @warning;
|
||||
--danger: @danger;
|
||||
--link: @link;
|
||||
|
||||
// Text colors
|
||||
--text-color-main: @text-color-main;
|
||||
--text-color-secondary: @text-color-secondary;
|
||||
--text-color-highlight: @text-color-highlight;
|
||||
--text-color-soft: @text-color-soft;
|
||||
--text-color-soft2: @text-color-soft2;
|
||||
--text-color-soft3: @text-color-soft3;
|
||||
--text-color-contrast: @text-color-contrast;
|
||||
// Text colors
|
||||
--text-color-main: @text-color-main;
|
||||
--text-color-default: @text-color-default;
|
||||
--text-color-secondary: @text-color-secondary;
|
||||
--text-color-highlight: @text-color-highlight;
|
||||
--text-color-soft: @text-color-soft;
|
||||
--text-color-soft2: @text-color-soft2;
|
||||
--text-color-soft3: @text-color-soft3;
|
||||
--text-color-contrast: @text-color-contrast;
|
||||
|
||||
// Background colors
|
||||
--background-color-main: @background-color-main;
|
||||
--background-color-secondary: @background-color-secondary;
|
||||
--background-color-page: @background-color-page;
|
||||
--background-color-highlight: @background-color-highlight;
|
||||
--background-color-highlight-soft: @background-color-highlight-soft;
|
||||
--background3: @background3;
|
||||
--background4: @background4;
|
||||
// Background colors
|
||||
--background-color-main: @background-color-main;
|
||||
--background-color-secondary: @background-color-secondary;
|
||||
--background-color-page: @background-color-page;
|
||||
--background-color-highlight: @background-color-highlight;
|
||||
--background-color-highlight-soft: @background-color-highlight-soft;
|
||||
--background3: @background3;
|
||||
--background4: @background4;
|
||||
|
||||
// Bootstrap Alert boxes
|
||||
// Success
|
||||
--background-color-success: @background-color-success;
|
||||
--text-color-success: @text-color-success;
|
||||
--border-color-success: @border-color-success;
|
||||
// Warning
|
||||
--background-color-warning: @background-color-warning;
|
||||
--text-color-warning: @text-color-warning;
|
||||
--border-color-warning: @border-color-warning;
|
||||
// Danger
|
||||
--background-color-danger: @background-color-danger;
|
||||
--text-color-danger: @text-color-danger;
|
||||
--border-color-danger: @border-color-danger;
|
||||
// Bootstrap Alert boxes
|
||||
// Success
|
||||
--background-color-success: @background-color-success;
|
||||
--text-color-success: @text-color-success;
|
||||
--border-color-success: @border-color-success;
|
||||
// Warning
|
||||
--background-color-warning: @background-color-warning;
|
||||
--text-color-warning: @text-color-warning;
|
||||
--border-color-warning: @border-color-warning;
|
||||
// Danger
|
||||
--background-color-danger: @background-color-danger;
|
||||
--text-color-danger: @text-color-danger;
|
||||
--border-color-danger: @border-color-danger;
|
||||
|
||||
// Fonts
|
||||
--mail-font-family: @mail-font-family;
|
||||
// Fonts
|
||||
--mail-font-family: @mail-font-family;
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user