NTextBox (input) should use the same border (color, thickness) as other widgets (ex: NComboxBox)

This commit is contained in:
quadbyte 2025-08-11 22:34:23 -04:00
parent f2ca670dad
commit 5802e066d6

View file

@ -33,8 +33,8 @@ Item {
anchors.fill: parent
radius: frame.radius
color: "transparent"
border.color: input.activeFocus ? Colors.accentPrimary : "transparent"
border.width: input.activeFocus ? Math.max(1, Style.borderMedium * scaling) : 0
border.color: input.activeFocus ? Colors.hover : "transparent"
border.width: input.activeFocus ? Math.max(1, Style.borderThin * scaling) : 0
}
RowLayout {