1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:38:13 +00:00

Spreadsheet: Simplify conditional formatting property tab GML

This commit is contained in:
Andreas Kling 2021-01-04 18:32:05 +01:00
parent 5db34848fe
commit fa88a26554

View file

@ -1,19 +1,16 @@
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
spacing: 2
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 10
}
shrink_to_fit: true
fixed_height: 25
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "if..."
fixed_width: 40
fixed_height: 25
}
@GUI::TextEditor {
@ -24,40 +21,34 @@
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 10
}
shrink_to_fit: true
fixed_height: 25
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Foreground..."
fixed_width: 150
fixed_height: 25
}
@GUI::ColorInput {
name: "foreground_input"
fixed_height: 25
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 10
}
shrink_to_fit: true
fixed_height: 25
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Background..."
fixed_width: 150
fixed_height: 25
}
@GUI::ColorInput {
name: "background_input"
fixed_height: 25
}
}
}