forked from Bilka2/ChangeMapSettings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.lua
56 lines (53 loc) · 1.11 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
data.raw["gui-style"]["default"]["pusher"] =
{
type = "horizontal_flow_style",
horizontally_stretchable = "on"
}
data.raw["gui-style"]["default"]["deep_frame"] =
{
type = "frame_style",
parent = "inside_deep_frame",
vertical_flow_style =
{
type = "vertical_flow_style",
vertical_spacing = 8
}
}
data.raw["gui-style"]["default"]["frame_in_deep_frame"] =
{
type = "frame_style",
parent = "frame",
graphical_set =
{
base =
{
position = {51, 0}, corner_size = 8,
center = {position = {76, 8}, size = {1, 1}},
draw_type = "outer"
},
shadow = default_inner_shadow
}
}
data.raw["gui-style"]["default"]["b_inner_frame_no_border"] =
{
type = "frame_style",
parent = "b_inner_frame",
graphical_set =
{
base =
{
center = {position = {76, 8}, size = {1, 1}},
},
-- we only show shadow on the top, to solve the problem of it not being casted from the subheader panel above
shadow =
{
top =
{
position = {191, 128},
size = {1, 8},
tint = hard_shadow_color,
draw_type = "inner"
}
}
}
}