keyboard: move ?keys code and styling from common include
[sheet.git] / keyboard.plp
index 8bbe8f7dcdbea9eec86eeb73d142ce3c914d4c98..4a49ebba91a52e64ddc6420a86bfce8d8193d727 100644 (file)
@@ -7,6 +7,16 @@ my $info = eval { Data($include) } || {};
 warn "error in $include: ", @{$@} if ref $@;
 $mode = $info->{title} // $mode;
 
+my $showkeys //= !exists $get{keys} ? undef :
+       ($get{keys} ne '0' && ($get{keys} || 'always'));
+my @keystyle = (
+       '<!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->',
+       '<!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]-->',
+       !$showkeys ? '<style> .no {visibility:hidden} </style>' :
+       $showkeys eq 'ghost' ? '<style> .no, .alias {opacity:.5} </style>' : (),
+       '<script type="text/javascript" src="/keys.js?1.6" async></script>',
+);
+
 Html({
        title => "\L$mode\E keyboard cheat sheet",
        version => $info->{version} || '0.1',
@@ -16,8 +26,8 @@ Html({
                sheet cheat reference overview keyboard control commands shortkey
        '],
        stylesheet => [qw( light dark circus mono red )],
-       keys => 1,
        data => ["$include.inc.pl"],
+       raw => \@keystyle,
 });
 
 %{$info} or Abort(