From b06471ad6d33ec9d14bc846e244b1716fb5c9df0 Mon Sep 17 00:00:00 2001 From: Ian Harrigan Date: Tue, 14 May 2024 13:27:55 +0200 Subject: [PATCH] remove right border when None --- haxe/ui/backend/html5/StyleHelper.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/haxe/ui/backend/html5/StyleHelper.hx b/haxe/ui/backend/html5/StyleHelper.hx index 9c92644..17bf062 100644 --- a/haxe/ui/backend/html5/StyleHelper.hx +++ b/haxe/ui/backend/html5/StyleHelper.hx @@ -53,6 +53,9 @@ class StyleHelper { css.removeProperty("border-bottom-width"); css.removeProperty("border-bottom-style"); css.removeProperty("border-bottom-color"); + css.removeProperty("border-right-width"); + css.removeProperty("border-right-style"); + css.removeProperty("border-right-color"); case Full: css.borderWidth = HtmlUtils.px(style.borderLeftSize); css.borderStyle = borderStyle;