plugins web list style tweaks

This commit is contained in:
Andrew Dolgov 2012-12-25 12:31:07 +04:00
parent 0448690482
commit 65d1e2501b
2 changed files with 11 additions and 4 deletions

View File

@ -655,7 +655,7 @@ class Pref_Prefs extends Handler_Protected {
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setplugins\">";
print "<table width='100%'>";
print "<table width='100%' class='prefPluginsList'>";
print "<tr><td colspan='4'><h3>".__("System plugins")."</h3></td></tr>";
@ -716,22 +716,25 @@ class Pref_Prefs extends Handler_Protected {
if (in_array($name, $system_enabled)) {
$checked = "checked='1'";
$disabled = "disabled='1'";
$rowclass = '';
} else if (in_array($name, $user_enabled)) {
$checked = "checked='1'";
$disabled = "";
$rowclass = "Selected";
} else {
$checked = "";
$disabled = "";
$rowclass = '';
}
print "<tr>";
print "<tr class='$rowclass'>";
print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
dojoType=\"dijit.form.CheckBox\" $checked $disabled
type=\"checkbox\"></td>";
print "<td>$name</td>";
print "<td>" . htmlspecialchars($about[1]) . "</td>";
print "<td><label for='FPCHK-$name'>$name</label></td>";
print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label></td>";
print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
print "<td>" . htmlspecialchars($about[2]) . "</td>";

View File

@ -1410,3 +1410,7 @@ ul#filterDlg_Matches li, ul#filterDlg_Actions li {
ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
margin-right : 5px;
}
table.prefPrefsList td labe/ {
cursor : pointer;
}