theming: update default_dark

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2021-02-28 19:26:54 +01:00
parent 6a61d2f878
commit 3c40055e2e

View File

@@ -1,54 +1,187 @@
Theme ( Theme (
styles: { styles: {
"button_menu": ( "button_action": (
base: "button", base: "button",
properties: { properties: {
"padding": 4, //"background": "transparent",
"border_radius": 0, "border_radius": 3,
}, "h_align": "center",
), "v_align": "center",
"container_form": ( },
base: "container", ),
properties: { "button_menu": (
"padding": 14, base: "button_single_content",
"border_width": 1, properties: {
"border_radius": 0, "h_align": "end",
"border_brush": "$CONTAINER_BORDER", //"icon": "material_icons_font::MD_MENU",
}, },
), ),
"configuration_form": ( "combo_box_form": (
base: "container", base: "combo_box",
properties: { properties: {
"margin": 4, "width": 200,
}, "height": 28,
), },
"container_progress": ( ),
base: "container", "mail_label": (
properties: { base: "base",
"padding": 14, properties: {
//"border_width": 1, "h_align": "end",
//"border_radius": 0, "v_align": "center",
"border_brush": "$CONTAINER_BORDER", },
}, ),
), "mail_to": (
"popup_progress": ( base: "combo_box_form",
base: "popup", properties: {
properties: { "h_align": "end",
//"background": "$BACKGROUND", },
"padding": 4, ),
}, "mail_cc": (
), base: "combo_box_form",
"text_block_progress": ( properties: {
base: "small_text", "h_align": "end",
properties: { },
"background": "$PROGRESS_BAR_BACKGROUND", ),
}, "combo_box_popup": (
), //base: "popup",
"stack_progress": ( properties: {
base: "container", //"height": 120,
properties: { "width": 240,
"spacing": 10, },
}, ),
), "configuration_form": (
base: "container",
properties: {
"margin": 4,
},
),
"container_action": (
base: "container_form",
properties: {
"border_width": 1,
"padding": {
"left": 14,
"top": 0,
"right": 14,
"bottom": 0,
},
"h_align": "center",
},
),
"container_form": (
base: "container",
properties: {
"padding": 14,
"border_brush": "$CONTAINER_BORDER",
"border_radius": 0,
"border_width": 1,
"min_height": 330,
},
),
"container_mail": (
base: "container_form",
properties: {
"border_width": 0,
"padding": {
"left": 14,
"top": 0,
"right": 14,
"bottom": 14,
}
},
),
"container_progress": (
base: "container",
properties: {
"border_brush": "$CONTAINER_BORDER",
"h_align": "center",
"padding": 14,
"v_align": "center",
},
),
"header_bar": (
base: "header",
properties: {
//"h_align": "center",
//"v_align": "center",
"min_height": 32,
//"padding": 14,
}
),
"header_text": (
base: "header",
properties: {
"h_align": "center",
"v_align": "center",
}
),
"popup_form": (
//base: "popup",
properties: {
"background": "#FFFFFF",
"border_brush": "#0000FF",
"border_radius": 3,
"border_width": 2,
"padding": 4,
},
),
"popup_menu": (
//base: "popup",
properties: {
"width": 300,
"hight": 200,
"border_radius": 0,
"border_width": 1,
"h_align": "center",
},
),
"popup_progress": (
base: "popup",
properties: {
"padding": 4,
},
),
"stack_action": (
//base: "stack",
properties: {
//"min_height": 50,
"orientation": "Horizontal",
"spacing": 50,
},
),
"stack_progress": (
base: "container",
properties: {
"spacing": 10,
},
),
"ticket_data_form_label": (
base: "container_form",
properties: {
"padding": 1,
"h_align": "end",
"v_align": "center",
"margin": {
"left": 0,
"top": 0,
"right": 0,
"bottom": 0,
},
"min_size": 300,
"max_size": 400,
},
),
"ticket_data_form_input": (
base: "ticket_data_form_label",
properties: {
"h_align": "start",
},
),
"text_block_progress": (
base: "small_text",
properties: {
"background": "$PROGRESS_BAR_BACKGROUND",
},
),
} }
) )