aa-intel-tool 2.6.1__py3-none-any.whl → 2.6.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aa_intel_tool/__init__.py +1 -1
- aa_intel_tool/helper/eve_character.py +24 -36
- aa_intel_tool/helper/static_files.py +2 -2
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +13 -13
- aa_intel_tool/locale/django.pot +10 -10
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +13 -13
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/ru/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +13 -13
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +15 -15
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +9 -9
- aa_intel_tool/parser/general.py +11 -16
- aa_intel_tool/parser/helper/db.py +8 -11
- aa_intel_tool/parser/module/chatlist.py +97 -126
- aa_intel_tool/parser/module/dscan.py +115 -147
- aa_intel_tool/parser/module/fleetcomp.py +85 -102
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +6 -19
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js +104 -64
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +2 -2
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +43 -43
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +31 -7
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js +51 -51
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +9 -3
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +53 -31
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html +1 -1
- aa_intel_tool/tests/test-data/dscan.txt +250 -0
- aa_intel_tool/tests/test_admin.py +50 -38
- aa_intel_tool/tests/test_helper_eve_character.py +405 -0
- aa_intel_tool/tests/test_models.py +188 -4
- aa_intel_tool/tests/test_parser_general.py +771 -0
- aa_intel_tool/tests/test_parser_module_chatlist.py +154 -0
- {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/METADATA +1 -1
- {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/RECORD +57 -55
- aa_intel_tool/tests/test_parser.py +0 -135
- {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/WHEEL +0 -0
- {aa_intel_tool-2.6.1.dist-info → aa_intel_tool-2.6.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -51,45 +51,49 @@ def get_fleet_composition(pilots: dict, ships: dict) -> dict:
|
|
|
51
51
|
ids=set(ship_class_ids), include_children=True
|
|
52
52
|
).values_list("id", "name", "eve_group__id", "eve_group__name", "mass", named=True)
|
|
53
53
|
|
|
54
|
-
#
|
|
55
|
-
for ship_class in ship_class_details:
|
|
54
|
+
# Build ship class and type dictionaries
|
|
55
|
+
for ship_class in list(ship_class_details):
|
|
56
56
|
# Build ship class dict
|
|
57
|
-
ships["class"][ship_class.name]
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
57
|
+
ships["class"][ship_class.name].update(
|
|
58
|
+
{
|
|
59
|
+
"id": ship_class.id,
|
|
60
|
+
"name": ship_class.name,
|
|
61
|
+
"type_id": ship_class.eve_group__id,
|
|
62
|
+
"type_name": ship_class.eve_group__name,
|
|
63
|
+
"image": eveimageserver.type_icon_url(type_id=ship_class.id, size=32),
|
|
64
|
+
"mass": ship_class.mass * ships["class"][ship_class.name]["count"],
|
|
65
|
+
}
|
|
66
66
|
)
|
|
67
67
|
|
|
68
68
|
# Build ship type dict
|
|
69
|
-
ships["type"][ship_class.eve_group__name]
|
|
70
|
-
|
|
69
|
+
ships["type"][ship_class.eve_group__name].update(
|
|
70
|
+
{
|
|
71
|
+
"id": ship_class.eve_group__id,
|
|
72
|
+
"name": ship_class.eve_group__name,
|
|
73
|
+
}
|
|
74
|
+
)
|
|
71
75
|
|
|
72
76
|
# Pilots
|
|
73
|
-
pilot_details = _get_character_info(scan_data=list(
|
|
74
|
-
|
|
75
|
-
#
|
|
76
|
-
for pilot in pilot_details:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
# Build pilots dict
|
|
83
|
-
pilots[pilot.character_name]["id"] = pilot.character_id
|
|
84
|
-
pilots[pilot.character_name]["portrait"] = pilot.portrait_url_32
|
|
85
|
-
pilots[pilot.character_name]["evewho"] = evewho.character_url(
|
|
86
|
-
pilot.character_id
|
|
77
|
+
pilot_details = _get_character_info(scan_data=list(pilots))
|
|
78
|
+
|
|
79
|
+
# Build pilots dictionary
|
|
80
|
+
for pilot in list(pilot_details):
|
|
81
|
+
pilot_ship_class = next(
|
|
82
|
+
ship_class
|
|
83
|
+
for ship_class in ship_class_details
|
|
84
|
+
if ship_class.name == pilots[pilot.character_name]["ship"]
|
|
87
85
|
)
|
|
88
|
-
|
|
89
|
-
|
|
86
|
+
|
|
87
|
+
pilots[pilot.character_name].update(
|
|
88
|
+
{
|
|
89
|
+
"id": pilot.character_id,
|
|
90
|
+
"portrait": pilot.portrait_url_32,
|
|
91
|
+
"evewho": evewho.character_url(pilot.character_id),
|
|
92
|
+
"zkillboard": zkillboard.character_url(pilot.character_id),
|
|
93
|
+
"ship_id": pilot_ship_class.id,
|
|
94
|
+
"ship_type_id": pilot_ship_class.eve_group__id,
|
|
95
|
+
}
|
|
90
96
|
)
|
|
91
|
-
pilots[pilot.character_name]["ship_id"] = pilot__ship_class.id
|
|
92
|
-
pilots[pilot.character_name]["ship_type_id"] = pilot__ship_class.eve_group__id
|
|
93
97
|
|
|
94
98
|
return {
|
|
95
99
|
"classes": dict_to_list(input_dict=ships["class"]),
|
|
@@ -117,12 +121,9 @@ def parse_line(line) -> list:
|
|
|
117
121
|
# line[4] => Position in Fleet
|
|
118
122
|
# line[5] => Skills (FC - WC - SC)
|
|
119
123
|
# line[6] => Wing Name / Squad Name
|
|
120
|
-
line = re.split(
|
|
124
|
+
line = re.split(r"\t+", line.rstrip("\t"))
|
|
121
125
|
|
|
122
|
-
if len(line)
|
|
123
|
-
line.append("")
|
|
124
|
-
|
|
125
|
-
return line
|
|
126
|
+
return line if len(line) > 6 else line + [""]
|
|
126
127
|
|
|
127
128
|
|
|
128
129
|
def update_ships(ships, line) -> dict:
|
|
@@ -137,14 +138,8 @@ def update_ships(ships, line) -> dict:
|
|
|
137
138
|
:rtype:
|
|
138
139
|
"""
|
|
139
140
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
if line[3] not in ships["type"]:
|
|
144
|
-
ships["type"][line[3]] = {"count": 0}
|
|
145
|
-
|
|
146
|
-
ships["class"][line[2]]["count"] += 1
|
|
147
|
-
ships["type"][line[3]]["count"] += 1
|
|
141
|
+
ships["class"].setdefault(line[2], {"count": 0})["count"] += 1
|
|
142
|
+
ships["type"].setdefault(line[3], {"count": 0})["count"] += 1
|
|
148
143
|
|
|
149
144
|
return ships
|
|
150
145
|
|
|
@@ -162,14 +157,11 @@ def handle_fleet_composition_and_participation(pilots, ships) -> tuple:
|
|
|
162
157
|
"""
|
|
163
158
|
|
|
164
159
|
fleet_composition = get_fleet_composition(pilots=pilots, ships=ships)
|
|
165
|
-
participation =
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
safe_to_db=False,
|
|
171
|
-
ignore_limit=True,
|
|
172
|
-
)
|
|
160
|
+
participation = (
|
|
161
|
+
parse_pilots(scan_data=list(set(pilots)), safe_to_db=False, ignore_limit=True)
|
|
162
|
+
if AppSettings.INTELTOOL_ENABLE_MODULE_CHATSCAN
|
|
163
|
+
else None
|
|
164
|
+
)
|
|
173
165
|
|
|
174
166
|
return fleet_composition, participation
|
|
175
167
|
|
|
@@ -184,59 +176,50 @@ def parse(scan_data: list) -> Scan:
|
|
|
184
176
|
:rtype:
|
|
185
177
|
"""
|
|
186
178
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
parsed_data = {}
|
|
191
|
-
pilots = {}
|
|
192
|
-
ships = {"type": {}, "class": {}}
|
|
193
|
-
lines = []
|
|
194
|
-
|
|
195
|
-
# Loop through the scan data
|
|
196
|
-
for entry in scan_data:
|
|
197
|
-
line = parse_line(entry)
|
|
198
|
-
|
|
199
|
-
pilots[line[0]] = {
|
|
200
|
-
"name": line[0],
|
|
201
|
-
"solarsystem": line[1],
|
|
202
|
-
"ship": line[2],
|
|
203
|
-
"ship_type": line[3],
|
|
204
|
-
}
|
|
205
|
-
ships = update_ships(ships=ships, line=line)
|
|
206
|
-
|
|
207
|
-
lines.append(line)
|
|
208
|
-
|
|
209
|
-
fleet_composition, participation = handle_fleet_composition_and_participation(
|
|
210
|
-
pilots=pilots, ships=ships
|
|
179
|
+
if not AppSettings.INTELTOOL_ENABLE_MODULE_FLEETCOMP:
|
|
180
|
+
raise ParserError(
|
|
181
|
+
message=_("The fleet composition module is currently disabled.")
|
|
211
182
|
)
|
|
212
183
|
|
|
213
|
-
|
|
184
|
+
parsed_data = {}
|
|
185
|
+
pilots = {}
|
|
186
|
+
ships = {"type": {}, "class": {}}
|
|
214
187
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
"section": ScanData.Section.SHIPLIST,
|
|
219
|
-
"data": fleet_composition["classes"],
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
# Add "ship types" to parsed data when available
|
|
223
|
-
if fleet_composition["types"]:
|
|
224
|
-
parsed_data["shiptypes"] = {
|
|
225
|
-
"section": ScanData.Section.SHIPTYPES,
|
|
226
|
-
"data": fleet_composition["types"],
|
|
227
|
-
}
|
|
188
|
+
# Loop through the scan data
|
|
189
|
+
for entry in scan_data:
|
|
190
|
+
line = parse_line(entry)
|
|
228
191
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
# Add fleet participation data to the parsed data
|
|
237
|
-
if participation:
|
|
238
|
-
parsed_data.update(participation)
|
|
192
|
+
pilots[line[0]] = {
|
|
193
|
+
"name": line[0],
|
|
194
|
+
"solarsystem": line[1],
|
|
195
|
+
"ship": line[2],
|
|
196
|
+
"ship_type": line[3],
|
|
197
|
+
}
|
|
198
|
+
ships = update_ships(ships=ships, line=line)
|
|
239
199
|
|
|
240
|
-
|
|
200
|
+
fleet_composition, participation = handle_fleet_composition_and_participation(
|
|
201
|
+
pilots=pilots, ships=ships
|
|
202
|
+
)
|
|
241
203
|
|
|
242
|
-
|
|
204
|
+
logger.debug(msg=fleet_composition)
|
|
205
|
+
|
|
206
|
+
# Add parsed data when available
|
|
207
|
+
if fleet_composition["classes"]:
|
|
208
|
+
parsed_data["classes"] = {
|
|
209
|
+
"section": ScanData.Section.SHIPLIST,
|
|
210
|
+
"data": fleet_composition["classes"],
|
|
211
|
+
}
|
|
212
|
+
if fleet_composition["types"]:
|
|
213
|
+
parsed_data["shiptypes"] = {
|
|
214
|
+
"section": ScanData.Section.SHIPTYPES,
|
|
215
|
+
"data": fleet_composition["types"],
|
|
216
|
+
}
|
|
217
|
+
if fleet_composition["pilots"]:
|
|
218
|
+
parsed_data["pilots_flying"] = {
|
|
219
|
+
"section": ScanData.Section.FLEETCOMPOSITION,
|
|
220
|
+
"data": fleet_composition["pilots"],
|
|
221
|
+
}
|
|
222
|
+
if participation:
|
|
223
|
+
parsed_data.update(participation)
|
|
224
|
+
|
|
225
|
+
return safe_scan_to_db(scan_type=Scan.Type.FLEETCOMP, parsed_data=parsed_data)
|
|
@@ -34,27 +34,18 @@
|
|
|
34
34
|
font-size: 1.25em;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
.aa-intel-tool .aa-intel-
|
|
38
|
-
.aa-intel-tool .aa-intel-corporation-logo-wrapper,
|
|
39
|
-
.aa-intel-tool .aa-intel-pilot-avatar-wrapper,
|
|
40
|
-
.aa-intel-tool .aa-intel-ship-image-wrapper {
|
|
37
|
+
.aa-intel-tool .aa-intel-eve-image-wrapper {
|
|
41
38
|
display: inline-block;
|
|
42
39
|
margin-right: 0.5rem;
|
|
43
40
|
}
|
|
44
41
|
|
|
45
|
-
.aa-intel-tool .aa-intel-
|
|
46
|
-
.aa-intel-tool .aa-intel-corporation-information-wrapper,
|
|
47
|
-
.aa-intel-tool .aa-intel-pilot-information-wrapper {
|
|
42
|
+
.aa-intel-tool .aa-intel-eve-information-wrapper {
|
|
48
43
|
display: inline-block;
|
|
49
44
|
vertical-align: inherit;
|
|
50
45
|
}
|
|
51
46
|
|
|
52
|
-
.aa-intel-tool .aa-intel-
|
|
53
|
-
.aa-intel-tool .aa-intel-
|
|
54
|
-
.aa-intel-tool .aa-intel-corporation-name-wrapper,
|
|
55
|
-
.aa-intel-tool .aa-intel-corporation-links-wrapper,
|
|
56
|
-
.aa-intel-tool .aa-intel-pilot-name-wrapper,
|
|
57
|
-
.aa-intel-tool .aa-intel-pilot-links-wrapper {
|
|
47
|
+
.aa-intel-tool .aa-intel-eve-name-wrapper,
|
|
48
|
+
.aa-intel-tool .aa-intel-additional-information-wrapper {
|
|
58
49
|
display: block;
|
|
59
50
|
}
|
|
60
51
|
}
|
|
@@ -119,15 +110,11 @@
|
|
|
119
110
|
white-space: nowrap;
|
|
120
111
|
}
|
|
121
112
|
|
|
122
|
-
.aa-intel-
|
|
123
|
-
.aa-intel-corporation-information-wrapper,
|
|
124
|
-
.aa-intel-pilot-information-wrapper {
|
|
113
|
+
.aa-intel-tool .aa-intel-eve-information-wrapper {
|
|
125
114
|
max-width: calc(100% - 35px);
|
|
126
115
|
}
|
|
127
116
|
|
|
128
|
-
.aa-intel-
|
|
129
|
-
.aa-intel-corporation-name-wrapper,
|
|
130
|
-
.aa-intel-pilot-name-wrapper {
|
|
117
|
+
.aa-intel-tool .aa-intel-eve-name-wrapper {
|
|
131
118
|
overflow: hidden;
|
|
132
119
|
text-overflow: ellipsis;
|
|
133
120
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@media all{.aa-intel-tool .aa-intel-scan-page-buttons ul li{display:block;float:left;width:150px}.aa-intel-tool .aa-intel-scan-page-buttons button{position:relative;width:100%}.aa-intel-tool .aa-intel-copy-result{max-width:310px}.aa-intel-tool .paste-explanation ul{list-style-type:none}.aa-intel-tool .paste-explanation li>small{color:var(--bs-gray)}.aa-intel-tool td.data-align-right{text-align:right}.aa-intel-tool .aa-intel-section-header{border-bottom:1px solid var(--bs-gray-200)}.aa-intel-tool .aa-intel-section-header .aa-intel-section-title{font-size:1.25em}.aa-intel-tool .aa-intel-
|
|
1
|
+
@media all{.aa-intel-tool .aa-intel-scan-page-buttons ul li{display:block;float:left;width:150px}.aa-intel-tool .aa-intel-scan-page-buttons button{position:relative;width:100%}.aa-intel-tool .aa-intel-copy-result{max-width:310px}.aa-intel-tool .paste-explanation ul{list-style-type:none}.aa-intel-tool .paste-explanation li>small{color:var(--bs-gray)}.aa-intel-tool td.data-align-right{text-align:right}.aa-intel-tool .aa-intel-section-header{border-bottom:1px solid var(--bs-gray-200)}.aa-intel-tool .aa-intel-section-header .aa-intel-section-title{font-size:1.25em}.aa-intel-tool .aa-intel-eve-image-wrapper{display:inline-block;margin-right:.5rem}.aa-intel-tool .aa-intel-eve-information-wrapper{display:inline-block;vertical-align:inherit}.aa-intel-tool .aa-intel-additional-information-wrapper,.aa-intel-tool .aa-intel-eve-name-wrapper,.aa-intel-tool form.is-submitting .aa-intel-form-submitted-info{display:block}.aa-intel-tool .aa-intel-highlight td:first-child,.aa-intel-tool .aa-intel-highlight-sticky td:first-child{border-left:1px solid var(--bs-red);padding-left:3px}.aa-intel-tool .aa-intel-form-submitted-info{display:none}.aa-intel-tool div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:initial}.aa-intel-tool .dataTables_wrapper table.dataTable{width:100%}.aa-intel-tool .dataTable tbody tr.aa-intel-highlight,.aa-intel-tool .dataTable tbody tr.aa-intel-highlight-sticky,.aa-intel-tool .dataTable tbody tr:hover{--bs-table-bg-type:var(--bs-table-hover-bg);--bs-table-color-type:var(--bs-table-striped-color)}.aa-intel-tool .table-aa-intel tbody>tr>td{vertical-align:middle}.aa-intel-tool .table-no-images>tbody>tr>td{padding-bottom:12px;padding-top:11px}.aa-intel-tool .table-sortable>tbody>tr>.table-data-count{padding-right:1rem;text-align:right}.aa-intel-tool td.text-ellipsis{max-width:50px;white-space:nowrap}.aa-intel-tool .aa-intel-eve-information-wrapper{max-width:calc(100% - 35px)}.aa-intel-tool .aa-intel-eve-name-wrapper{overflow:hidden;text-overflow:ellipsis}.aa-intel-tool td.fix-eve-image-position>span.alliance-id-1{transform:none}}
|
|
2
2
|
/*# sourceMappingURL=aa-intel-tool.min.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["aa-intel-tool.css"],"names":[],"mappings":"AAAA,A,WACI,gD,CACI,a,CACA,U,CACA,W,CAGJ,iD,CACI,iB,CACA,U,CAGJ,oC,CACI,e,CAGJ,oC,CACI,oB,CAGJ,0C,CACI,oB,CAGJ,kC,CACI,gB,CAGJ,uC,CACI,0C,CAGJ,+D,CACI,gB,CAGJ,
|
|
1
|
+
{"version":3,"sources":["aa-intel-tool.css"],"names":[],"mappings":"AAAA,A,WACI,gD,CACI,a,CACA,U,CACA,W,CAGJ,iD,CACI,iB,CACA,U,CAGJ,oC,CACI,e,CAGJ,oC,CACI,oB,CAGJ,0C,CACI,oB,CAGJ,kC,CACI,gB,CAGJ,uC,CACI,0C,CAGJ,+D,CACI,gB,CAGJ,0C,CACI,oB,CACA,kB,CAGJ,gD,CACI,oB,CACA,sB,CAIJ,uD,CADA,yC,CAuBA,+D,CArBI,a,CAOJ,iD,CACA,wD,CACI,mC,CACA,gB,CAOJ,4C,CACI,Y,CAWJ,yD,CACI,e,CACA,mB,CAGJ,kD,CACI,U,CAIJ,qD,CACA,4D,CAFA,wC,CAGI,2C,CACA,mD,CAGJ,0C,CACI,qB,CAGJ,2C,CACI,mB,CACA,gB,CAGJ,yD,CACI,kB,CACA,gB,CAGJ,+B,CACI,c,CACA,kB,CAGJ,gD,CACI,2B,CAGJ,yC,CACI,e,CACA,sB,CAGJ,2D,CACI,gB","file":"aa-intel-tool.css","sourcesContent":["@media all {\n .aa-intel-tool .aa-intel-scan-page-buttons ul li {\n display: block;\n float: left;\n width: 150px;\n }\n\n .aa-intel-tool .aa-intel-scan-page-buttons button {\n position: relative;\n width: 100%;\n }\n\n .aa-intel-tool .aa-intel-copy-result {\n max-width: 310px;\n }\n\n .aa-intel-tool .paste-explanation ul {\n list-style-type: none;\n }\n\n .aa-intel-tool .paste-explanation li > small {\n color: var(--bs-gray);\n }\n\n .aa-intel-tool td.data-align-right {\n text-align: right;\n }\n\n .aa-intel-tool .aa-intel-section-header {\n border-bottom: 1px solid var(--bs-gray-200);\n }\n\n .aa-intel-tool .aa-intel-section-header .aa-intel-section-title {\n font-size: 1.25em;\n }\n\n .aa-intel-tool .aa-intel-eve-image-wrapper {\n display: inline-block;\n margin-right: 0.5rem;\n }\n\n .aa-intel-tool .aa-intel-eve-information-wrapper {\n display: inline-block;\n vertical-align: inherit;\n }\n\n .aa-intel-tool .aa-intel-eve-name-wrapper,\n .aa-intel-tool .aa-intel-additional-information-wrapper {\n display: block;\n }\n}\n\n/* Highlighting\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool .aa-intel-highlight td:first-child,\n .aa-intel-tool .aa-intel-highlight-sticky td:first-child {\n border-left: 1px solid var(--bs-red);\n padding-left: 3px;\n }\n}\n\n/* Form\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool .aa-intel-form-submitted-info {\n display: none;\n }\n\n .aa-intel-tool form.is-submitting .aa-intel-form-submitted-info {\n display: block;\n }\n}\n\n/* Data Tables\n------------------------------------------------------------------------------------- */\n@media all {\n .aa-intel-tool div.dataTables_wrapper div.dataTables_info {\n padding-top: 8px;\n white-space: initial;\n }\n\n .aa-intel-tool .dataTables_wrapper table.dataTable {\n width: 100%;\n }\n\n .aa-intel-tool .dataTable tbody tr:hover,\n .aa-intel-tool .dataTable tbody tr.aa-intel-highlight,\n .aa-intel-tool .dataTable tbody tr.aa-intel-highlight-sticky {\n --bs-table-bg-type: var(--bs-table-hover-bg);\n --bs-table-color-type: var(--bs-table-striped-color);\n }\n\n .aa-intel-tool .table-aa-intel tbody > tr > td {\n vertical-align: middle;\n }\n\n .aa-intel-tool .table-no-images > tbody > tr > td {\n padding-bottom: 12px;\n padding-top: 11px;\n }\n\n .aa-intel-tool .table-sortable > tbody > tr > .table-data-count {\n padding-right: 1rem;\n text-align: right;\n }\n\n .aa-intel-tool td.text-ellipsis {\n max-width: 50px;\n white-space: nowrap;\n }\n\n .aa-intel-tool .aa-intel-eve-information-wrapper {\n max-width: calc(100% - 35px);\n }\n\n .aa-intel-tool .aa-intel-eve-name-wrapper {\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .aa-intel-tool td.fix-eve-image-position > span.alliance-id-1 {\n transform: none;\n }\n}\n"]}
|