Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- Updated `EuiCallout` by removing left border, adding border radius and increasing font weight on titles ([#3557](https://github.com/elastic/eui/pull/3557/))
- Updated `EuiHeaderBreadcrumbs` style to be more prominent ([#3578](https://github.com/elastic/eui/pull/3578/))
- Fixed `EuiFilterGroup` `border-radius` ([#3591](https://github.com/elastic/eui/pull/3591/))
- Updated `EuiCodeBlock` inline code style to use border radius ([#3599](https://github.com/elastic/eui/pull/3599))

## [`25.0.0`](https://github.com/elastic/eui/tree/v25.0.0)

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
$euiBorderRadius: $euiSizeS * .75;
$euiBorderRadiusSmall: $euiSizeS * .5;
5 changes: 5 additions & 0 deletions src/themes/eui-amsterdam/overrides/_code.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.euiCodeBlock {
&.euiCodeBlock--inline {
border-radius: $euiBorderRadiusSmall;
}
}
1 change: 1 addition & 0 deletions src/themes/eui-amsterdam/overrides/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@import 'button_empty';
@import 'button_group';
@import 'call_out';
@import 'code';
@import 'filter_group';
@import 'flyout';
@import 'header';
Expand Down