Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

### Fixed

- `<Tooltip />`:
- Code markup inside tooltips was hardly readable because of low contrast.

## [26.0.0] - 2026-07-08

This is a major release, and it might not be compatible with your current usage of our library. Please read about the necessary changes in the migration section below.
Expand Down
7 changes: 7 additions & 0 deletions src/components/Tooltip/tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ $tooltip-padding-horizontal: $eccgui-size-block-whitespace * 0.5; // !default;
transparent
);
}

pre code,
.#{$eccgui}-typography__contentblock pre code,
pre.#{$eccgui}-typography__text code {
background-color: transparent;
color: inherit;
}
}

.#{$prefix}--tooltip-content {
Expand Down
Loading