Skip to content

Commit 6b8b25b

Browse files
committed
[Console] Fix left border of selection box overlapping with folding arrow (#244728)
Closes #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" /> (cherry picked from commit d1fc40a)
1 parent 37ee1a5 commit 6b8b25b

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
@@ -47,7 +47,7 @@ export const useHighlightedLinesClassName = () => {
4747
position: absolute;
4848
top: 0;
4949
bottom: calc(-${euiTheme.size.base} * 0.1);
50-
left: calc(-${euiTheme.size.base} * 0.5);
50+
left: calc(-${euiTheme.size.base} * 0.35);
5151
right: 0;
5252
background: ${transparentize(euiTheme.colors.primary, 0.05)};
5353
border: ${euiTheme.border.thin};

0 commit comments

Comments
 (0)