mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
37 lines
751 B
Plaintext
37 lines
751 B
Plaintext
@GUI::Frame {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GamesSettings::CardGamePreview {
|
|
name: "cards_preview"
|
|
fill_with_background_color: true
|
|
fixed_height: 160
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Background Color"
|
|
max_height: "shrink"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GUI::ColorInput {
|
|
name: "cards_background_color"
|
|
has_alpha_channel: false
|
|
}
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Card Back"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GUI::IconView {
|
|
name: "cards_back_image"
|
|
}
|
|
}
|
|
}
|