diff --git a/advotracker_client/assets/advotracker/fluent_light.ron b/advotracker_client/assets/advotracker/fluent_light.ron index e69de29..e5cbf40 100644 --- a/advotracker_client/assets/advotracker/fluent_light.ron +++ b/advotracker_client/assets/advotracker/fluent_light.ron @@ -0,0 +1,179 @@ +Theme ( + styles: { + "button_action": ( + base: "button", + properties: { + //"background": "transparent", + "border_radius": 3, + "h_align": "center", + "v_align": "center", + }, + ), + "button_menu": ( + base: "button_single_content", + properties: { + "h_align": "end", + //"icon": "material_icons_font::MD_MENU", + }, + ), + "combo_box_form": ( + base: "combo_box", + properties: { + "width": 200, + //"height": 28, + }, + ), + "combo_box_popup": ( + base: "popup_box_popup", + properties: { + "height": 80, + "min_height": 80, + "width": 160, + "min_width": 80, + }, + ), + "mail_label": ( + base: "base", + properties: { + "h_align": "end", + "v_align": "center", + }, + ), + "mail_to": ( + base: "combo_box_form", + properties: { + "h_align": "end", + }, + ), + "mail_cc": ( + base: "combo_box_form", + properties: { + "h_align": "end", + }, + ), + "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_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", + }, + ), + } +)