Skip to content

Commit d97cd4e

Browse files
SoniaSanzVtkajtoch
authored andcommitted
[Console] Fix left border of selection box overlapping with folding arrow (elastic#244728)
Closes elastic#225681 ## Summary Left border of selection box was overlapping with folding arrow. I just slightly decrease the left position of the highlighting. ### Before <img width="839" height="233" alt="Screenshot 2025-12-01 at 11 20 36" src="https://github.com/user-attachments/assets/0f46b74a-d27d-4014-a1df-b5ab98660846" /> ### After <img width="829" height="218" alt="Screenshot 2025-12-01 at 11 20 17" src="https://github.com/user-attachments/assets/06edf3ef-d2ae-4d77-8c31-ee8d0211765a" />
1 parent 46d9bfd commit d97cd4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/platform/plugins/shared/console/public/application/containers/editor

src/platform/plugins/shared/console/public/application/containers/editor/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const useHighlightedLinesClassName = () => {
4242
position: absolute;
4343
top: 0;
4444
bottom: calc(-${euiTheme.size.base} * 0.1);
45-
left: calc(-${euiTheme.size.base} * 0.5);
45+
left: calc(-${euiTheme.size.base} * 0.35);
4646
right: 0;
4747
background: ${transparentize(euiTheme.colors.primary, 0.05)};
4848
border: ${euiTheme.border.thin};

0 commit comments

Comments
 (0)