Diff for /loncom/interface/loncommon.pm between versions 1.1454 and 1.1457

version 1.1454, 2025/02/14 23:10:30 version 1.1457, 2025/02/18 02:38:06
Line 7051  END Line 7051  END
                 if ($dc_info) {                  if ($dc_info) {
                     $dc_info = qq|<span class="LC_cusr_subheading">$dc_info</span>|;                      $dc_info = qq|<span class="LC_cusr_subheading">$dc_info</span>|;
                 }                  }
                 $bodytag .= qq|<div id="LC_nav_bar" role="navigation" aria-label="$labeltext">$left $role<br />|;                  $bodytag .= qq|<div id="LC_nav_bar" role="navigation" aria-label="$labeltext">$left $role</div>|;
                 unless (($realm eq '') && ($dc_info eq '')) {                  unless (($realm eq '') && ($dc_info eq '')) {
                     $bodytag .= qq|<div id="LC_realm" role="complementary"><em>$realm</em> $dc_info</div>|;                      $bodytag .= qq|<div id="LC_realm" role="complementary"><em>$realm</em> $dc_info</div>|;
                 }                  }
Line 7061  END Line 7061  END
                 return $bodytag;                  return $bodytag;
             }              }
   
             $bodytag .= '<div class="LC_landmark" role="navigation" aria-label="'.$labeltext.'">';              $bodytag .= '<div class="LC_landmark" style="margin: 3px 0 0 0;" role="navigation" aria-label="'.$labeltext.'">';
             unless ($env{'request.symb'} =~ m/\.page___\d+___/) {              unless ($env{'request.symb'} =~ m/\.page___\d+___/) {
                 $bodytag .= qq|<div id="LC_nav_bar">$left $role</div>|;                  $bodytag .= qq|<div id="LC_nav_bar">$left $role</div>|;
             }              }
Line 7072  END Line 7072  END
                 $dc_info = &dc_courseid_toggle($dc_info);                  $dc_info = &dc_courseid_toggle($dc_info);
             }              }
             unless (($realm eq '') && ($dc_info eq '')) {              unless (($realm eq '') && ($dc_info eq '')) {
                 $bodytag .= qq|<div id="LC_realm">$realm $dc_info</div>|;                  $bodytag .= qq|<div id="LC_realm" role="complementary">$realm $dc_info</div>|;
             }              }
               $bodytag .= qq|<div style="clear: both; margin: 5px 0 0 0;"></div>|;
         }          }
   
         #if directed to not display the secondary menu, don't.            #if directed to not display the secondary menu, don't.  
Line 7334  form, .inline { Line 7335  form, .inline {
   
 .LC_heading_2 {  .LC_heading_2 {
   font-size: 1.17em;    font-size: 1.17em;
   margin-top: 1em;  
   margin-bottom: 1em;  
 }  }
   
 .LC_menus_content.shown{  .LC_menus_content.shown{
Line 8006  table#LC_helpmenu fieldset legend { Line 8005  table#LC_helpmenu fieldset legend {
   font-size: larger;    font-size: larger;
 }  }
   
 table#LC_helpmenu_links {  .LC_helpdesk_headbox {
   width: 100%;    border: 2px groove threedface;
   border: 1px solid black;    padding: 1em;
   }
   
   h1.LC_helpdesk_legend {
     float: left;
     margin: -1.7em 0 0;
     padding: 0 .5em;
   background: $pgbg;    background: $pgbg;
     font-size: 1em;
     font-weight: bold;
   }
   
   h1.LC_helpdesk_title {
     display: inline;
     font-size: 1em;
     line-height: 2.5em;
     margin: 0;
   padding: 0;    padding: 0;
   border-spacing: 1px;    vertical-align: bottom;
 }  }
   
 table#LC_helpmenu_links tr td {  .LC_helpdesk_links {
   padding: 1px;    border: 1px solid black;
     padding: 3px;
   background: $tabbg;    background: $tabbg;
   text-align: center;    text-align: center;
   font-weight: bold;    font-weight: bold;
     display: inline;
     margin-right: -6px;
 }  }
   
 table#LC_helpmenu_links a:link,  .LC_helpdesk_img,
 table#LC_helpmenu_links a:visited,  .LC_helpdesk_text {
 table#LC_helpmenu_links a:active {    padding: 0;
     margin: 0;
     border: 0;
     display: inline;
   }
   
   .LC_helpdesk_img a:link,
   .LC_helpdesk_img a:visited,
   .LC_helpdesk_img a:active,
   .LC_helpdesk_text a:link,
   .LC_helpdesk_text a:visited,
   .LC_helpdesk_text a:active {
   text-decoration: none;    text-decoration: none;
   color: $font;    color: $font;
 }  }
   
 table#LC_helpmenu_links a:hover {  div.LC_helpdesk_text a:hover {
   text-decoration: underline;    text-decoration: underline;
   color: $vlink;    color: $vlink;
 }  }
Line 9740  OFFLOAD Line 9768  OFFLOAD
 <meta name="viewport" content="width=device-width, initial-scale=1.0">  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <meta name="apple-mobile-web-app-capable" content="yes" />';  <meta name="apple-mobile-web-app-capable" content="yes" />';
     }      }
     $result .= '<meta name="google" content="notranslate" />'."\n";      $result .= '<meta name="google" content="notranslate"';
       if (!$args->{'frameset'}) {
           $result .= ' /';
       }
       $result .= '>'."\n";
     return $result.'</head>';      return $result.'</head>';
 }  }
   

Removed from v.1.1454  
changed lines
  Added in v.1.1457


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>