mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
NTextBox (input) should use the same border (color, thickness) as other widgets (ex: NComboxBox)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user