Moved the Agents into their own repo. Kept the agent.pl just for reference
This commit is contained in:
parent
22381be29a
commit
8680a02b13
18132 changed files with 0 additions and 2569420 deletions
|
|
@ -1,5 +0,0 @@
|
|||
$(document).ready(function()
|
||||
{
|
||||
$('.main').addClass('main-content').parent().attr('id', 'content');
|
||||
$('.main [type="submit"]').last().removeClass('btn-primary').addClass('btn-secondary');
|
||||
});
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
$(document).ready(function()
|
||||
{
|
||||
$('.main input[name="remove"]').removeClass('btn-primary').addClass('btn-danger');
|
||||
$('.main input[name="show_all"]').removeClass('btn-primary').addClass('btn-warning float-right');
|
||||
});
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
.main [href*="&addon_type="]
|
||||
{
|
||||
width: 150px;
|
||||
height: 110px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.main [href*="&addon_type="] span {
|
||||
line-height: 14px;
|
||||
max-height: 28px;
|
||||
}
|
||||
|
||||
.main .addons {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main .addons a {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.main .addons a + a {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
.main .addons a > .badge {
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
width: 25px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.main .addons a[href*="&addon_type="]:before
|
||||
{
|
||||
display: block;
|
||||
font-size: 40px;
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-weight: 900;
|
||||
content: "\f1b2";
|
||||
}
|
||||
.main .addons a[href*="&addon_type=plugin"]:before {
|
||||
content: "\f12e";
|
||||
}
|
||||
.main .addons a[href*="&addon_type=config"]:before {
|
||||
content: "\f11b";
|
||||
}
|
||||
.main .addons a[href*="&addon_type=mappack"]:before {
|
||||
content: "\f279";
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
$(document).ready(function()
|
||||
{
|
||||
$('.main > table').before('<div class="addons d-flex mb-1"></div>');
|
||||
$('.main td').contents().appendTo('.addons');
|
||||
$('.main > table').remove();
|
||||
|
||||
$('.main [type="submit"]').removeClass('btn-primary').addClass('btn-secondary');
|
||||
|
||||
$('.main [href*="&addon_type="]').each(function()
|
||||
{
|
||||
$(this).addClass('btn btn-primary d-flex flex-column justify-content-center align-items-center').wrapInner('<span>');
|
||||
|
||||
var btnTextSplit = $(this).find('span').text().split('(');
|
||||
var btnText = btnTextSplit[0];
|
||||
var btnMods = btnTextSplit[1].split(')')[0];
|
||||
|
||||
$(this).find('span').text(btnText);
|
||||
$(this).prepend('<span class="badge bg-secondary">' + btnMods + '</span>');
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue