smaller & slightly faster skin

This commit is contained in:
Squidly271 2021-05-22 11:31:41 -04:00
parent cf161858a0
commit 492bd09fab
3 changed files with 13 additions and 13 deletions

Binary file not shown.

View File

@ -17,7 +17,7 @@ b398273cf7daa62ab00d2de2336ca25f ./README.md
9ba7ea3ef8bad60cb8335da9c0daea4f ./javascript/libraries.js
e605780f0c220d94298c20a6914af598 ./skins/Narrow/css.php
58a140a38ceb6836a5b7c5b9bca85b6c ./skins/Narrow/skin.html
4f627e90b1e6d93cd33a0eb88bfab69e ./skins/Narrow/skin.php
15e7bae2e4b457601e18e020eaab45dd ./skins/Narrow/skin.php
38d1f40cbc64eed32cdb3292e1ec1f6e ./scripts/PluginAPI.php
bbd9dec6c5df486d75c46388c14f09ce ./scripts/installMulti.php
ce2c904b6a40c4677a3ff3484776959e ./scripts/installMultiPlugin.sh

View File

@ -984,38 +984,38 @@ function displayCard($template) {
$language .= $template['LanguageLocal'] ? " - {$template['LanguageLocal']}" : "";
$template['Category'] = "";
}
extract($template);
$card = "
<div class='$holder ca_holder' data-repository='".htmlentities($template['RepoName'],ENT_QUOTES)."'>
<div class='$holder ca_holder' data-repository='".htmlentities($RepoName,ENT_QUOTES)."'>
<div class='ca_iconArea'>
<div class='ca_icon'>
{$template['display_iconClickable']}
$display_iconClickable
</div>
<div class='ca_infoArea'>
<div class='ca_applicationInfo'>
<span class='ca_applicationName'>
$appName {$template['display_faWarning']}{$template['display_beta']}
$appName $display_faWarning$display_beta
</span>
{$template['display_Private']}
$display_Private
<br>
<span class='ca_author'>{$template['display_repoName']}</span>{$template['display_author']}
<span class='ca_author'>$display_repoName</span>$display_author
<br>
<span class='ca_categories'>
{$template['Category']}$language
$Category$language
</span>
<br>{$template['display_DonateImage']}{$template['ca_LanguageDisclaimer']}
<br>$display_DonateImage$ca_LanguageDisclaimer
</div>
</div>
</div>
<div class='ca_hr'></div>
<div class='ca_bottomLine'>
{$template['display_multi_install']}{$template['display_pluginUpdate']}{$template['display_languageUpdate']}{$template['display_languageInstallIcon']}{$template['display_language_switch']}{$template['display_pluginInstallIcon']}{$template['display_dockerInstallIcon']} $dockerReinstall {$template['display_dockerReinstallIcon']} {$template['display_dockerEditIcon']} {$template['display_pluginSettingsIcon']}{$template['display_infoIcon']} {$template['dockerWebIcon']}{$template['display_profile']}{$template['display_webpage']}{$template['display_faSupport']}{$template['display_twitter']}{$template['display_reddit']}{$template['display_discord']}{$template['display_facebook']} {$template['display_faProject']} {$template['display_pinButton']}{$template['display_repoSearch']}{$template['display_faFavourite']}{$template['display_favouriteButton']}
$display_multi_install$display_pluginUpdate$display_languageUpdate$display_languageInstallIcon$display_language_switch$display_pluginInstallIcon$display_dockerInstallIcon $dockerReinstall $display_dockerReinstallIcon $display_dockerEditIcon $display_pluginSettingsIcon$display_infoIcon $dockerWebIcon$display_profile$display_webpage$display_faSupport$display_twitter$display_reddit$display_discord$display_facebook $display_faProject $display_pinButton$display_repoSearch$display_faFavourite$display_favouriteButton
<span class='ca_bottomRight'>
{$template['display_removable']} {$template['display_Uninstall']}
$display_removable $display_Uninstall
</span>
</div>
<div class='{$descriptionArea}'>
{$template['CardDescription']}
<div class='$descriptionArea'>
$CardDescription
</div>
</div>
";