version 1.757, 2009/02/25 21:06:27
|
version 1.762, 2009/03/04 12:43:31
|
Line 924 sub help_open_topic {
|
Line 924 sub help_open_topic {
|
|
|
# Add the text |
# Add the text |
if ($text ne "") { |
if ($text ne "") { |
$template.="<a style=\"background-color:#3333AA;\" target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF;\">$text</span></a>"; |
$template.="<span class=\"LC_nobreak\"><a class=\"LC_helptextbgcolor\" target=\"_top\" href=\"$link\"><span class=\"LC_helptextfontcolor\">$text</span></a>"; |
} |
} |
|
|
# Add the graphic |
# Add the graphic |
my $title = &mt('Online Help'); |
my $title = &mt('Online Help'); |
my $helpicon=&lonhttpdurl("/adm/help/help.png"); |
my $helpicon=&lonhttpdurl("/adm/help/help.png"); |
$template .= <<"ENDTEMPLATE"; |
$template .= <<"ENDTEMPLATE"; |
<a target="_top" href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a> |
<a target="_top" href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a></span> |
ENDTEMPLATE |
ENDTEMPLATE |
|
|
return $template; |
return $template; |
Line 4244 $realm
|
Line 4244 $realm
|
</td> |
</td> |
ENDROLE |
ENDROLE |
|
|
my $titleinfo = '<span class="LC_title_bar_title">'.$title.'</span>'; |
my $titleinfo = '<h1>'.$title.'</h1>'; |
if ($customtitle) { |
if ($customtitle) { |
$titleinfo = $customtitle; |
$titleinfo = $customtitle; |
} |
} |
Line 4611 table#LC_title_bar td.LC_title_bar_who {
|
Line 4611 table#LC_title_bar td.LC_title_bar_who {
|
span.LC_metadata { |
span.LC_metadata { |
font-family: $sans; |
font-family: $sans; |
} |
} |
span.LC_title_bar_title { |
|
font: bold x-large $sans; |
|
} |
|
table#LC_title_bar td.LC_title_bar_domain_logo { |
table#LC_title_bar td.LC_title_bar_domain_logo { |
background: $sidebg; |
background: $sidebg; |
text-align: right; |
text-align: right; |
Line 5581 h2,h3,h4,h5,h6
|
Line 5578 h2,h3,h4,h5,h6
|
overflow:hidden; |
overflow:hidden; |
} |
} |
|
|
|
.LC_Right { |
|
float: right; |
|
margin: 0px; |
|
padding: 0px; |
|
} |
|
|
p, .LC_ContentBox { |
p, .LC_ContentBox { |
padding: 10px; |
padding: 10px; |
|
|
Line 5591 p, .LC_ContentBox {
|
Line 5594 p, .LC_ContentBox {
|
cursor:pointer; |
cursor:pointer; |
text-decoration:underline; |
text-decoration:underline; |
} |
} |
|
.LC_helptextbgcolor |
|
{ |
|
background-color:#5555FF; |
|
} |
|
.LC_helptextfontcolor |
|
{ |
|
color:#FFFFFF; |
|
} |
|
|
dl,ul,div,fieldset { |
dl,ul,div,fieldset { |
margin: 10px 10px 10px 0px; |
margin: 10px 10px 10px 0px; |
Line 5616 ol.LC_smallMenu a {
|
Line 5626 ol.LC_smallMenu a {
|
color: RGB(80, 80, 80); |
color: RGB(80, 80, 80); |
text-decoration: none; |
text-decoration: none; |
} |
} |
ol#LC_TabMainMenueContent, ul.LC_TabContent , |
ol#LC_TabMainMenuContent, ul.LC_TabContent , |
ul.LC_TabContentBigger { |
ul.LC_TabContentBigger { |
display:block; |
display:block; |
list-style:none; |
list-style:none; |
Line 5660 ul.LC_TabContent li a, ul.LC_TabContent
|
Line 5670 ul.LC_TabContent li a, ul.LC_TabContent
|
text-decoration:none; |
text-decoration:none; |
font-size:95%; |
font-size:95%; |
font-weight:bold; |
font-weight:bold; |
|
padding-right: 16px; |
} |
} |
ul.LC_TabContent li:hover, ul.LC_TabContent li.active{ |
ul.LC_TabContent li:hover, ul.LC_TabContent li.active{ |
background-color:#FFFFFF; |
background:#FFFFFF url(/adm/lonIcons/open.gif) no-repeat scroll right center; |
border-bottom:solid 1px #FFFFFF; |
border-bottom:solid 1px #FFFFFF; |
|
padding-right: 16px; |
} |
} |
ul.LC_TabContentBigger li{ |
ul.LC_TabContentBigger li{ |
vertical-align:bottom; |
vertical-align:bottom; |
Line 6247 sub start_page {
|
Line 6259 sub start_page {
|
$result = &html_encode($result); |
$result = &html_encode($result); |
} |
} |
|
|
if (exists($args->{'bread_crumbs'})) { |
#Breadcrumbs |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
if (exists($args->{'bread_crumbs'}) or exists($args->{'bread_crumbs_component'})) { |
if (ref($args->{'bread_crumbs'}) eq 'ARRAY') { |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
foreach my $crumb (@{$args->{'bread_crumbs'}}){ |
#if any br links exists, add them to the breadcrumbs |
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
if (exists($args->{'bread_crumbs'}) and ref($args->{'bread_crumbs'}) eq 'ARRAY') { |
} |
foreach my $crumb (@{$args->{'bread_crumbs'}}){ |
} |
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
} |
} |
} |
|
|
|
#if bread_crumbs_component exists show it as headline else show only the breadcrumbs |
|
if(exists($args->{'bread_crumbs_component'})){ |
|
$result .= &Apache::lonhtmlcommon::breadcrumbs($args->{'bread_crumbs_component'}); |
|
}else{ |
|
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
|
} |
|
} |
return $result; |
return $result; |
} |
} |
|
|