Skip to content

Commit

Permalink
fix(input): update picker focus background-color and border-color in …
Browse files Browse the repository at this point in the history
…bootstrap
  • Loading branch information
epetrow authored and joneff committed Apr 29, 2022
1 parent 275748c commit 6ac2e1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/bootstrap/scss/button/_variables.scss
Expand Up @@ -121,13 +121,13 @@ $kendo-button-selected-shadow: $kendo-button-active-shadow !default;

/// The base background of focused button.
/// @group button
$kendo-button-focus-bg: null !default;
$kendo-button-focus-bg: try-darken( $kendo-button-bg, 10% ) !default;
/// The base text color of focused button.
/// @group button
$kendo-button-focus-text: null !default;
/// The base border color of focused button.
/// @group button
$kendo-button-focus-border: null !default;
$kendo-button-focus-border: try-darken( $kendo-button-bg, 12.5% ) !default;
/// The base background gradient of focused button.
/// @group button
$kendo-button-focus-gradient: null !default;
Expand Down
2 changes: 1 addition & 1 deletion packages/bootstrap/scss/input/_variables.scss
Expand Up @@ -103,7 +103,7 @@ $kendo-picker-hover-border: $kendo-button-hover-border !default;
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;

$kendo-picker-focus-bg: $kendo-button-focus-bg !default;
$kendo-picker-focus-bg: $kendo-button-active-bg !default;
$kendo-picker-focus-text: $kendo-button-focus-text !default;
$kendo-picker-focus-border: $kendo-button-focus-border !default;
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
Expand Down

0 comments on commit 6ac2e1d

Please sign in to comment.