diff --git a/docs/theming.md b/docs/theming.md index 5a90180a49..7b6966fb2f 100644 --- a/docs/theming.md +++ b/docs/theming.md @@ -116,6 +116,8 @@ You can target specific elements on the UI with these variables. All are optiona - `--welcome-popup-text-color` - Text color for the welcome pop-up. Defaults to `--primary` - `--side-bar-background` - Background color of the sidebar used in the workspace view. Defaults to `--background-darker` - `--side-bar-color` - Color of icons and text within the sidebar. Defaults to `--primary` +- `--status-check-tooltip-background` - Background color for status check tooltips. Defaults to `--background-darker` +- `--status-check-tooltip-color` - Text color for the status check tooltips. Defaults to `--primary` #### Non-Color Variables - `--outline-color` - Used to outline focused or selected elements diff --git a/src/components/LinkItems/Item.vue b/src/components/LinkItems/Item.vue index 53cb47fc1b..37c0733a3f 100644 --- a/src/components/LinkItems/Item.vue +++ b/src/components/LinkItems/Item.vue @@ -101,6 +101,7 @@ export default { html: false, placement: this.statusResponse ? 'left' : 'auto', delay: { show: 600, hide: 200 }, + classes: 'item-description-tooltip', }; }, /* Used by certain themes, which display an icon with animated CSS */ diff --git a/src/components/LinkItems/StatusIndicator.vue b/src/components/LinkItems/StatusIndicator.vue index 6b1864dd5c..7775fa6295 100644 --- a/src/components/LinkItems/StatusIndicator.vue +++ b/src/components/LinkItems/StatusIndicator.vue @@ -112,7 +112,8 @@ export default {