--- loncom/interface/loncommon.pm 2025/02/14 22:42:05 1.1453
+++ loncom/interface/loncommon.pm 2025/02/18 02:38:06 1.1457
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.1453 2025/02/14 22:42:05 raeburn Exp $
+# $Id: loncommon.pm,v 1.1457 2025/02/18 02:38:06 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -6947,8 +6947,6 @@ sub bodytag {
$role = &Apache::lonnet::plaintext($role);
}
- if (!$realm) { $realm=' '; }
-
my $extra_body_attr = &make_attr_string($forcereg,\%design);
# construct main body tag
@@ -6972,7 +6970,6 @@ sub bodytag {
undef($role);
}
unless ($ltimenu->{'coursetitle'}) {
- $realm=' ';
$showcrstitle = 0;
}
}
@@ -6982,7 +6979,6 @@ sub bodytag {
undef($role);
}
unless ($menuref->{'crs'}) {
- $realm=' ';
$showcrstitle = 0;
}
}
@@ -7050,29 +7046,35 @@ END
$args->{'links_disabled'},
$args->{'links_target'},
$collapsible);
-
+ my $labeltext = &HTML::Entities::encode(&mt('Primary links'));
if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) {
if ($dc_info) {
$dc_info = qq|$dc_info|;
}
- $bodytag .= qq|
$left $role
- $realm $dc_info
|;
+ $bodytag .= qq|$left $role
|;
+ unless (($realm eq '') && ($dc_info eq '')) {
+ $bodytag .= qq|$realm $dc_info
|;
+ }
if ($need_endlcint) {
$bodytag .= Apache::lonhtmlcommon::scripttag('', 'end');
}
return $bodytag;
}
+ $bodytag .= '';
unless ($env{'request.symb'} =~ m/\.page___\d+___/) {
$bodytag .= qq|
$left $role
|;
}
- $bodytag .= $right;
+ $bodytag .= $right.'
';
if ($dc_info) {
$dc_info = &dc_courseid_toggle($dc_info);
}
- $bodytag .= qq|$realm $dc_info
|;
+ unless (($realm eq '') && ($dc_info eq '')) {
+ $bodytag .= qq|$realm $dc_info
|;
+ }
+ $bodytag .= qq||;
}
#if directed to not display the secondary menu, don't.
@@ -7333,8 +7335,6 @@ form, .inline {
.LC_heading_2 {
font-size: 1.17em;
- margin-top: 1em;
- margin-bottom: 1em;
}
.LC_menus_content.shown{
@@ -8005,29 +8005,58 @@ table#LC_helpmenu fieldset legend {
font-size: larger;
}
-table#LC_helpmenu_links {
- width: 100%;
- border: 1px solid black;
+.LC_helpdesk_headbox {
+ border: 2px groove threedface;
+ padding: 1em;
+}
+
+h1.LC_helpdesk_legend {
+ float: left;
+ margin: -1.7em 0 0;
+ padding: 0 .5em;
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;
- border-spacing: 1px;
+ vertical-align: bottom;
}
-table#LC_helpmenu_links tr td {
- padding: 1px;
+.LC_helpdesk_links {
+ border: 1px solid black;
+ padding: 3px;
background: $tabbg;
text-align: center;
font-weight: bold;
+ display: inline;
+ margin-right: -6px;
}
-table#LC_helpmenu_links a:link,
-table#LC_helpmenu_links a:visited,
-table#LC_helpmenu_links a:active {
+.LC_helpdesk_img,
+.LC_helpdesk_text {
+ 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;
color: $font;
}
-table#LC_helpmenu_links a:hover {
+div.LC_helpdesk_text a:hover {
text-decoration: underline;
color: $vlink;
}
@@ -8054,7 +8083,7 @@ table.LC_pick_box {
border-spacing: 1px;
}
-table.LC_pick_box td.LC_pick_box_title {
+table.LC_pick_box th.LC_pick_box_title {
background: $sidebg;
font-weight: bold;
text-align: left;
@@ -9739,7 +9768,11 @@ OFFLOAD
';
}
- $result .= ''."\n";
+ $result .= '{'frameset'}) {
+ $result .= ' /';
+ }
+ $result .= '>'."\n";
return $result.'';
}