1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:15:54 +00:00

user css dialog: allow saving and applying CSS without closing the dialog

This commit is contained in:
Andrew Dolgov
2019-12-06 14:02:30 +03:00
parent 0697eca0e1
commit ac95ab4a65
3 changed files with 15 additions and 3 deletions

View File

@@ -1584,7 +1584,7 @@
$value = get_pref('USER_STYLESHEET');
if ($value) {
print "<style type=\"text/css\">";
print "<style type='text/css' id='user_css_style'>";
print str_replace("<br/>", "\n", $value);
print "</style>";
}