-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnet.css
110 lines (90 loc) · 1.56 KB
/
net.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
Screen {
layout: horizontal;
background: $panel;
overflow: hidden;
layers: base filters;
}
Dropdown {
max-width: 50;
}
#input_container {
layout: horizontal;
dock: top;
margin: 1 0;
height: auto;
}
#input_container Input {
width: 80%;
}
#input_container Button {
width: 20%;
}
InventorySidebar {
background: $panel;
layout: vertical;
layer: filters;
width: 30%;
border: round $primary;
offset: 0 6;
height: 80%;
transition: offset 250ms in_out_cubic;
}
InventorySidebar.hidden {
offset: -100% 20%;
}
InventorySidebar Label {
text-style: bold;
}
InventorySidebar Label.h1 {
text-align: center;
border: hkey $primary;
}
InventorySidebar Label.chkbox-label {
text-align: center;
}
InventorySidebar Button {
margin: 1 1 1 1;
}
InventorySidebar Vertical {
width: auto;
height: auto;
margin: 1 0;
}
#sot_selector_container {
layout: vertical;
width: auto;
height: auto;
}
#sot_header {
width: 1fr;
}
InventorySidebar #last_synced {
dock: bottom;
margin: 1 0;
}
.disabled-text {
color: $text-disabled;
}
.result {
width: 1fr;
/* min-height: 100%; */
padding: 0 1;
background: $background 50%;
border: tall $background;
}
.result-header {
width: 1fr;
height: 5%;
background: $background 100%;
border: tall $background;
}
.results-container {
layout: vertical;
width: 1fr;
margin: 0 0 1 0;
overflow: hidden auto;
border: tall $background;
}
InventoryScreen #inv_copy_label {
dock: top;
}