diff --git a/help/3.php b/help/3.php index 94b9f2608..8db600965 100644 --- a/help/3.php +++ b/help/3.php @@ -55,6 +55,7 @@ g sStarred articles g fFresh articles g pPublished articles + g tTag cloud g PPreferences diff --git a/images/shadow_white.png b/images/shadow_white.png new file mode 100644 index 000000000..4c39ef97e Binary files /dev/null and b/images/shadow_white.png differ diff --git a/tt-rss.css b/tt-rss.css index fc7aa94c8..13daa8145 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -1189,15 +1189,14 @@ a.cdmToggleLink:hover { } #dialog_overlay { - background : white; left : 0; top : 0; height : 100%; width : 100%; z-index : 2; - opacity : 0.5; position : absolute; display : none; + background-image : url("images/shadow_white.png"); } #overlay { diff --git a/tt-rss.js b/tt-rss.js index 480da1a62..2a0fc8626 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1134,6 +1134,9 @@ function hotkey_handler(e) { return viewfeed(-3); } + if (keycode == 84) { // t + toggleTags(); + } }