force sync from /var/www/html/panel: 2025-09-08T20:36:30Z
This commit is contained in:
commit
4f717c9ee8
18119 changed files with 2566034 additions and 0 deletions
7
ControlPanel/themes/AdminLTE/modules/update/blacklist.css
Executable file
7
ControlPanel/themes/AdminLTE/modules/update/blacklist.css
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
.main i.fa.fa-folder-open {
|
||||
color: #ffe699;
|
||||
}
|
||||
|
||||
.main .table tr > td:first-of-type {
|
||||
width: 3rem;
|
||||
}
|
||||
31
ControlPanel/themes/AdminLTE/modules/update/blacklist.js
Executable file
31
ControlPanel/themes/AdminLTE/modules/update/blacklist.js
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
$(document).ready(function()
|
||||
{
|
||||
$('.main [href="?m=update"]').addClass('btn btn-xs btn-primary');
|
||||
|
||||
$('.main img[src^="images"]').each(function()
|
||||
{
|
||||
if($(this).attr('src')=='images/folder.png')
|
||||
{
|
||||
var icon = '<i class="fa fa-folder-open mr-1"></i>';
|
||||
}else
|
||||
{
|
||||
var icon = '<i class="fas fa-pencil-alt mr-1"></i>'
|
||||
}
|
||||
|
||||
if($(this).next('a').length>0)
|
||||
{
|
||||
var content = '<a href="' + $(this).next('a').attr('href') + '" class="text-dark badge">' + $(this).next('a').text() + '</a>';
|
||||
}else
|
||||
{
|
||||
var content = '<span class="text-dark badge">' + $(this).parent('td').text() + '</span>';
|
||||
}
|
||||
|
||||
$(this).parent('td').html(icon + content);
|
||||
});
|
||||
|
||||
$('.main a[href$="&back"]').each(function()
|
||||
{
|
||||
$(this).addClass('btn btn-xs btn-secondary').text('.. ' + langConsts['OGP_LANG_level_up'].replace(/\^/g, '')).prepend('<i class="fas fa-level-up-alt mr-1"></i>');
|
||||
});
|
||||
});
|
||||
|
||||
4
ControlPanel/themes/AdminLTE/modules/update/update.css
Executable file
4
ControlPanel/themes/AdminLTE/modules/update/update.css
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
.badge.badge-primary {
|
||||
font-size: 94%;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
8
ControlPanel/themes/AdminLTE/modules/update/update.js
Executable file
8
ControlPanel/themes/AdminLTE/modules/update/update.js
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
$(document).ready(function() {
|
||||
$('.card-body [href="?m=update&p=blacklist"], .card-body [href*="commits"]').addClass('btn btn-sm btn-primary');
|
||||
$('.card-body [href*="commit"]:not([href*="commits"])').addClass('label label-primary');
|
||||
|
||||
$('.card-body ul > br').remove();
|
||||
$('.card-body ul').addClass('list-group');
|
||||
$('.card-body li').addClass('list-group-item');
|
||||
});
|
||||
0
ControlPanel/themes/AdminLTE/modules/update/updating.css
Executable file
0
ControlPanel/themes/AdminLTE/modules/update/updating.css
Executable file
Loading…
Add table
Add a link
Reference in a new issue