Skip to content

Commit 72117c8

Browse files
fix: inconsistent outline color on focus when navigating using tab key (#1687)
fix: add consistent outline color for focused inputs and buttons
1 parent cdc7a29 commit 72117c8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/less/blueprint.less

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
// Override some of the colors
88
.fiddle.bp3-dark {
9+
.bp3-control input:focus ~ .bp3-control-indicator {
10+
outline: @blue3 solid 2px;
11+
}
12+
913
.bp3-menu,
1014
.bp3-popover .bp3-popover-content {
1115
background-color: @background-1;
@@ -28,6 +32,10 @@
2832
background-color: rgba(138, 155, 168, 0.15);
2933
}
3034

35+
.bp3-button:focus{
36+
outline: @blue3 solid 2px;
37+
}
38+
3139
.bp3-menu-item.bp3-active.bp3-intent-primary {
3240
background-color: @foreground-3;
3341
}

0 commit comments

Comments
 (0)