summaryrefslogtreecommitdiff
path: root/modules/pref-labels.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-26 11:07:53 +0100
committerAndrew Dolgov <[email protected]>2009-01-26 11:07:53 +0100
commit2eb9c95c970644f8408da9d22b60a66caadd36fb (patch)
tree28898aa275858840119816938380f1ef4562a5f6 /modules/pref-labels.php
parentc218ceb82c23fc37179c792a6c67af5114f0d079 (diff)
support colored labels
Diffstat (limited to 'modules/pref-labels.php')
-rw-r--r--modules/pref-labels.php14
1 files changed, 11 insertions, 3 deletions
diff --git a/modules/pref-labels.php b/modules/pref-labels.php
index b09a16cf5..059079a71 100644
--- a/modules/pref-labels.php
+++ b/modules/pref-labels.php
@@ -110,7 +110,7 @@
}
$result = db_query($link, "SELECT
- id,caption
+ *
FROM
ttrss_labels2
WHERE
@@ -149,12 +149,20 @@
print "<tr class=\"$class\" $this_row_id>";
$line["caption"] = htmlspecialchars($line["caption"]);
-
+
+ $fg_color = $line["fg_color"];
+ $bg_color = $line["bg_color"];
+
+ if (!$fg_color) $fg_color = "black";
+ if (!$bg_color) $bg_color = "transparent";
+
print "<td width='5%' align='center'><input
onclick='toggleSelectPrefRow(this, \"label\");'
type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
- print "<td><span id=\"LILT-".$line["id"]."\">" . $line["caption"] .
+ print "<td><span class='prefsLabelEntry'
+ style='color : $fg_color; background-color : $bg_color'
+ id=\"LILT-".$line["id"]."\">" . $line["caption"] .
"</span></td>";
print "</tr>";