]> bicyclesonthemoon.info Git - ott/bsta/commitdiff
add frame size to viewer, update css
authorb <rowerynaksiezycu@gmail.com>
Wed, 3 Jan 2024 09:34:28 +0000 (09:34 +0000)
committerb <rowerynaksiezycu@gmail.com>
Wed, 3 Jan 2024 09:34:28 +0000 (09:34 +0000)
bsta.css
bsta_lib.1.pm

index 652f9fca76fc62141310f8b339d5f20e81fb4935..48d481d962fc978dc6147fa64a45d28727eb6833 100644 (file)
--- a/bsta.css
+++ b/bsta.css
@@ -129,6 +129,11 @@ img#frame
        margin: 0px;
 }
 
+img#frame:hover
+{
+       border-color: #bb6622;
+}
+
 img.intf
 {
        border-width: 0px;
@@ -156,16 +161,11 @@ table#intftable
        border-width:27px 38px;
        padding: 0px;
        margin: 0px;
-       background-color: #00ff00;
+       background-color: #ffffff;
        border-collapse: collapse;
        border-spacing: 0px;
 }
 
-img#frame:hover
-{
-       border-color: #bb6622;
-}
-
 div#undertext
 {
        text-align: left;
@@ -343,4 +343,4 @@ div.le
 div.pr
 {
        float: right;
-}
\ No newline at end of file
+}
index 6207b6a2b2cd568df5b1ed278415a2d2372f5af4..c6b244b47f89907af74e36cce36e3ea8b5d7d4fa 100644 (file)
@@ -1008,6 +1008,9 @@ sub print_viewer_page {
        my $last_frame = int($state->{'last'});
        my $ong_state  = int($state->{'state'});
        
+       my $width  = int($frame_data->{'width'});
+       my $height = int($frame_data->{'height'});
+       
        my $timer_color_h = (($timer_unlocked >= 1) || ($ong_state >= STATE->{'ready'})) ? 'br' : 'ni';
        my $timer_color_m = (($timer_unlocked >= 2) || ($ong_state >= STATE->{'ready'})) ? 'br' : 'ni';
        my $timer_color_s = (($timer_unlocked >= 3) || ($ong_state >= STATE->{'ready'})) ? 'br' : 'ni';
@@ -1268,7 +1271,7 @@ sub print_viewer_page {
        print $fh '   </div>'."\n";
        print $fh '   <div id="framespace">'."\n";
        
-       print $fh '    <img src="'.$_frame_url.'" id="frame" alt="'.$frame.'" title="'.$_title.'">'."\n";
+       print $fh '    <img src="'.$_frame_url.'" id="frame" alt="'.$frame.'" title="'.$_title.'" width="'.$width.'" height="'.$height.'">'."\n";
        
        print $fh '   </div>'."\n";
        print $fh '   <div id="insb" class="ins">'."\n";