-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.lua
41 lines (40 loc) · 923 Bytes
/
data.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
local styles = data.raw["gui-style"].default
styles["afkc_interface"] = {
type = "frame_style",
height = 600
}
styles["afkc_content_frame"] = {
type = "frame_style",
parent = "inside_shallow_frame_with_padding"
}
styles["afkc_choose_elem"] = {
type = "button_style",
parent = "slot_button",
}
styles["afkc_text_box"] = {
type = "textbox_style",
width = 36
}
styles["afkc_titlebar_flow"] = {
type = "horizontal_flow_style",
horizontal_spacing = 8
}
styles["afkc_empty_widget"] = {
type = "empty_widget_style",
parent = "draggable_space",
horizontally_stretchable = "on",
height = 24,
left_margin = 4,
right_margin = 4
}
styles["afkc_buttons"] = {
type="button_style",
parent="tool_button_red"
}
styles["afkc_buttons_check"] = {
type="checkbox_style"
}
styles["afkc_content_scrollbar"] = {
type="vertical_scrollbar_style",
height=400
}