59 lines
1014 B
YAML
59 lines
1014 B
YAML
# login_dialog.yaml
|
|
type: frame
|
|
x: 0
|
|
y: 0
|
|
scale-size: [0.4, 0.25]
|
|
scale-pos: [0.3, 0.2]
|
|
color: "#1e1e2e"
|
|
border-color: "#4a4a6a"
|
|
roundness: 12
|
|
|
|
children:
|
|
- type: label
|
|
text: "Sign In"
|
|
x: 0
|
|
y: 20
|
|
scale-size: [1.0, 0.0]
|
|
h: 48
|
|
align: center
|
|
font: 28
|
|
text-color: "#cdd6f4"
|
|
|
|
- type: textbox
|
|
x: 30
|
|
y: 90
|
|
scale-size: [0.85, 0.0]
|
|
h: 36
|
|
text: ""
|
|
color: "#313244"
|
|
border-color: "#6c7086"
|
|
text-color: "#cdd6f4"
|
|
font: 14
|
|
on-return: "focusPassword"
|
|
|
|
- type: textbox
|
|
x: 30
|
|
y: 140
|
|
scale-size: [0.85, 0.0]
|
|
h: 36
|
|
text: ""
|
|
color: "#313244"
|
|
border-color: "#6c7086"
|
|
text-color: "#cdd6f4"
|
|
font: 14
|
|
on-return: "submitLogin"
|
|
|
|
- type: button
|
|
text: "Log In"
|
|
align: "center"
|
|
fit-font: true
|
|
x: 30
|
|
y: 200
|
|
scale-size: [0.2, 0.0]
|
|
h: 40
|
|
color: "#89b4fa"
|
|
text-color: "#1e1e2e"
|
|
roundness: 8
|
|
on-pressed: "submitLogin"
|
|
on-enter: "highlightButton"
|
|
on-exit: "unhighlightButton" |