assets: update theme definitions for default_dark.ron

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-11-08 18:43:29 +01:00
parent 014b98bd85
commit 9624567dbd

View File

@@ -1,5 +1,12 @@
Theme ( Theme (
styles: { styles: {
"button_menu": (
base: "button",
properties: {
"padding": 4,
"border_radius": 0,
},
),
"container_form": ( "container_form": (
base: "container", base: "container",
properties: { properties: {
@@ -9,5 +16,39 @@ Theme (
"border_brush": "$CONTAINER_BORDER", "border_brush": "$CONTAINER_BORDER",
}, },
), ),
"configuration_form": (
base: "container",
properties: {
"margin": 4,
},
),
"container_progress": (
base: "container",
properties: {
"padding": 14,
//"border_width": 1,
//"border_radius": 0,
"border_brush": "$CONTAINER_BORDER",
},
),
"popup_progress": (
base: "popup",
properties: {
//"background": "$BACKGROUND",
"padding": 4,
},
),
"text_block_progress": (
base: "small_text",
properties: {
"background": "$PROGRESS_BAR_BACKGROUND",
},
),
"stack_progress": (
base: "container",
properties: {
"spacing": 10,
},
),
} }
) )