summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-10 08:37:24 +0300
committerAndrew Dolgov <[email protected]>2018-12-10 08:37:24 +0300
commit96fccefa621c71d58ba77ce939690fedc78d2615 (patch)
treec93d66e564471df5aa850e889ae0132caf7bc05b /classes
parentad6ae725d8d5dba272bd49d0d38a903838c34e73 (diff)
update hotkey help dialog a bit
Diffstat (limited to 'classes')
-rw-r--r--classes/backend.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/classes/backend.php b/classes/backend.php
index d5d0f5a01..29b2d5048 100644
--- a/classes/backend.php
+++ b/classes/backend.php
@@ -31,12 +31,13 @@ class Backend extends Handler {
__("Other interface tips are available in the Tiny Tiny RSS wiki.") .
"</a>");
- print "<ul class='helpKbList' id='helpKbList'>";
+ print "<ul class='panel panel-scrollable hotkeys-help' style='height : 300px'>";
print "<h2>" . __("Keyboard Shortcuts") . "</h2>";
foreach ($info as $section => $hotkeys) {
+ print "<li><hr></li>";
print "<li><h3>" . $section . "</h3></li>";
foreach ($hotkeys as $action => $description) {
@@ -72,8 +73,8 @@ class Backend extends Handler {
}
print "<li>";
- print "<span class='hksequence'>$sequence</span>";
- print $description;
+ print "<div class='hk'><code>$sequence</code></div>";
+ print "<div class='desc'>$description</div>";
print "</li>";
}
}