From 88e4e5979c505cdbb494c2624b7a4e09c8145217 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 Nov 2010 19:23:24 +0300 Subject: rework user CSS support (bump schema) --- modules/popup-dialog.php | 24 ++++++++++++++++++++++++ modules/pref-prefs.php | 6 +++++- 2 files changed, 29 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php index 52b1f94f6..394ee16a0 100644 --- a/modules/popup-dialog.php +++ b/modules/popup-dialog.php @@ -785,6 +785,30 @@ } + if ($id == "customizeCSS") { + + $value = get_pref($link, "USER_STYLESHEET"); + + print T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. This file can be used as a baseline.", "tt-rss.css"); + + print ""; + print ""; + print ""; + + print "

"; + + print "

"; + print " "; + print ""; + print "
"; + + } + print ""; } ?> diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php index 5bc180de4..359359733 100644 --- a/modules/pref-prefs.php +++ b/modules/pref-prefs.php @@ -16,7 +16,7 @@ $prefs_blacklist = array("HIDE_FEEDLIST", "SYNC_COUNTERS", "ENABLE_LABELS", "ENABLE_SEARCH_TOOLBAR", "HIDE_READ_FEEDS", "ENABLE_FEED_ICONS", "ENABLE_OFFLINE_READING", "EXTENDED_FEEDLIST", "FEEDS_SORT_BY_UNREAD", - "OPEN_LINKS_IN_NEW_WINDOW"); + "OPEN_LINKS_IN_NEW_WINDOW", "USER_STYLESHEET_URL"); $profile_blacklist = array("ALLOW_DUPLICATE_POSTS", "PURGE_OLD_DAYS", "PURGE_UNREAD_ARTICLES", "DIGEST_ENABLE", "DIGEST_CATCHUP", @@ -419,6 +419,10 @@ $timezones = explode("\n", file_get_contents("lib/timezones.txt")); print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"'); + } else if ($pref_name == "USER_STYLESHEET") { + + print ""; } else if ($pref_name == "DEFAULT_UPDATE_INTERVAL") { -- cgit v1.2.3