From f2e4a380b199469cb025af6cfbddba82c96f0bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Lef=C3=A8vre=20=28lul=29?= Date: Tue, 10 Dec 2024 10:52:45 +0100 Subject: [PATCH] [IMP] standalone_composer: change active border color 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 odoo/o-spreadsheet#5336 Task: 4380648 Signed-off-by: Pierre Rousseau (pro) --- .../composer/standalone_composer/standalone_composer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/composer/standalone_composer/standalone_composer.ts b/src/components/composer/standalone_composer/standalone_composer.ts index c0b681c517..2c5b26865a 100644 --- a/src/components/composer/standalone_composer/standalone_composer.ts +++ b/src/components/composer/standalone_composer/standalone_composer.ts @@ -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"; @@ -21,7 +21,7 @@ css/* scss */ ` border-color: ${GRAY_300}; &.active { - border-color: ${SELECTION_BORDER_COLOR}; + border-color: ${ACTION_COLOR}; } &.o-invalid {