IMPORTANT READ BELOW

Switch settings to only be available from within CA.  Must adjust the
.plg to delete PluginSettings.page as the file has been replaced with
ca_settings.page

Changed CSS on pinned / unpinned to rotate
pull/2/head
Squidly271 2017-10-21 17:59:39 -04:00
parent 6c9a4481a5
commit 6d037299a4
3 changed files with 7 additions and 7 deletions

View File

@ -64,9 +64,9 @@ input.dirButton {margin:1px;}
input.allButtons {margin:-1px;}
input[type=checkbox] {width:20px; height:20px;}
.enabledIcon { cursor:pointer;background-color:<?=$iconEnabledColor?>;height:35px;border-radius:5px;padding:5px;}
.disabledIcon { cursor:pointer;background-color:<?=$iconDisabledColor?>;height:35px;border-radius:5px;padding:5px;}
.disabledIcon { cursor:pointer;background-color:<?=$iconDisabledColor?>;height:35px;border-radius:5px;padding:5px;opacity: 0.2;}
.pinned { cursor:pointer;font-size:15px;color:green;padding:3px;}
.unpinned { cursor:pointer;font-size:15px;color:red;padding:3px;}
.unpinned { cursor:pointer;font-size:15px;color:red;padding:3px; -webkit-transform: rotate(20deg);-moz-transform: rotate(20deg);-ms-transform: rotate(20deg);-o-transform: rotate(20deg);transform: rotate(20deg);}
</style>
<?if ( $toolTipsterIncluded == "false" ) : ?>
@ -1377,7 +1377,7 @@ function resizeDisplay() {
<div id='appWarning' style='display:none'><center><img src='https://raw.githubusercontent.com/Squidly271/community.applications/master/webImages/Warning2.png' height='50px' width='50px'><br>
<font size='2' color='red'>Note: All Applications listed here are 3rd party additions to unRaid.<br>Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any applications listed herein</font>
<br><input type='button' value='Dismiss Warning' onclick='dismissWarning();'></input></center></div>
<span style='float:right;'><a class='ca_staticTips' title='Display The CA Manual' href="Settings/caHelp" target='_blank'>CA Manual</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class='ca_stats' title='Gathering Statistics' style='cursor:pointer;'>Statistics</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class='ca_credits' style='cursor:pointer'>Credits</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id='updateButton' onclick='forceUpdateButton();' style='cursor:pointer;display:none;'>Legacy Mode</a></span>
<span style='float:right;'><a class='ca_staticTips' title='Display The CA Manual' href="Settings/caHelp" target='_blank'>CA Manual</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class='ca_stats' title='Gathering Statistics' style='cursor:pointer;'>Statistics</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class='ca_credits' style='cursor:pointer'>Credits</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a id='updateButton' onclick='forceUpdateButton();' style='cursor:pointer;display:none;'>Legacy Mode</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='/Apps/ca_settings' target='_self' class='ca_staticTips' title='Adjust Settings'>CA Settings <i class='fa fa-cog' aria-hidden='true'></i></a></span>
<br>
> For help with this plugin, click here (a new tab will open with the help file) <strong><font size="2"><a href="Settings/caHelp" target="_blank">HELP</a></font></strong><br>
> <img src='/plugins/community.applications/images/SectionIcon.png' height='50px'> - This chooses which "section" to display (Available Apps, Installed Apps, Previously Installed Apps, Pinned Apps, additional CA Modules<br>

View File

@ -1,4 +1,4 @@
Menu="CA"
Menu="hidden"
Title="General Settings"
Icon="settings.png"
---
@ -39,9 +39,9 @@ natcasesort($repoName);
$displayOptions = mk_option($cfg['favourite'], "None", "None (default)");
foreach ($repoName as $display) {
$optionName = str_replace("'","*",$display);
$displayOptions .= mk_option($cfg['favourite'], $optionName, $display);
foreach ($repoName as $display1) {
$optionName = str_replace("'","*",$display1);
$displayOptions .= mk_option($cfg['favourite'], $optionName, $display1);
}
$unRaid64 = (version_compare($vars['version'],"6.4.0-rc0",">=")) || (is_file("/usr/local/emhttp/plugins/dynamix/styles/dynamix-gray.css")) ? "true" : "false";