Skip to content

Commit

Permalink
[IMP] standalone_composer: change active border color
Browse files Browse the repository at this point in the history
The current bottom border color of the standalone composer is blue when the
input is focused.

This commit changes the color to the blue-green color, like every other input

closes #5336

Task: 4380648
Signed-off-by: Pierre Rousseau (pro) <[email protected]>
  • Loading branch information
LucasLefevre committed Dec 11, 2024
1 parent 7448722 commit f2e4a38
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from "@odoo/owl";
import { GRAY_300, SELECTION_BORDER_COLOR } from "../../../constants";
import { ACTION_COLOR, GRAY_300 } from "../../../constants";
import { Token } from "../../../formulas";
import { AutoCompleteProviderDefinition } from "../../../registries";
import { Store, useLocalStore, useStore } from "../../../store_engine";
Expand All @@ -21,7 +21,7 @@ css/* scss */ `
border-color: ${GRAY_300};
&.active {
border-color: ${SELECTION_BORDER_COLOR};
border-color: ${ACTION_COLOR};
}
&.o-invalid {
Expand Down

0 comments on commit f2e4a38

Please sign in to comment.