version 1.715, 2008/12/14 00:33:35
|
version 1.719, 2008/12/16 10:41:02
|
Line 5448 table#LC_mainmenu td.LC_mainmenu_col_fie
|
Line 5448 table#LC_mainmenu td.LC_mainmenu_col_fie
|
font-weight: bold; |
font-weight: bold; |
} |
} |
|
|
|
div.LC_createcourse { |
|
margin: 10px 10px 10px 10px; |
|
} |
|
|
/* ---- Remove when done ---- |
/* ---- Remove when done ---- |
# The following styles is part of the redesign of LON-CAPA and are |
# The following styles is part of the redesign of LON-CAPA and are |
# subject to change during this project. |
# subject to change during this project. |
Line 5698 div.columnSection > .ContentBoxSpecial
|
Line 5702 div.columnSection > .ContentBoxSpecial
|
width: 400px; |
width: 400px; |
|
|
} |
} |
|
.ContentBoxSpecialTemplate |
|
{ |
|
border: solid 1px $lg_border_color; |
|
} |
|
.ContentBoxTemplate { |
|
padding:10px; |
|
} |
|
|
|
div.columnSection > .ContentBoxTemplate, |
|
div.columnSection > .ContentBoxSpecialTemplate |
|
{ |
|
width: 600px; |
|
|
|
} |
|
|
|
|
.LC_loginpage_container { |
.LC_loginpage_container { |
text-align:left; |
text-align:left; |
Line 5717 div.columnSection > .ContentBoxSpecial
|
Line 5736 div.columnSection > .ContentBoxSpecial
|
background-color:$loginbg; |
background-color:$loginbg; |
} |
} |
|
|
.LC_loginpage_loginContainer h1{ |
.LC_loginpage_loginContainer h2{ |
margin-top:0; |
margin-top:0; |
display:block; |
display:block; |
background:$bgcol; |
background:$bgcol; |
Line 6027 sub start_page {
|
Line 6046 sub start_page {
|
$result = &html_encode($result); |
$result = &html_encode($result); |
} |
} |
|
|
if (exists $args->{'bread_crumbs'}) { |
if (exists($args->{'bread_crumbs'})) { |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
my $temp = $args->{'bread_crumbs'}; |
if (ref($args->{'bread_crumbs'}) eq 'ARRAY') { |
foreach my $crumb (@$temp){ |
foreach my $crumb (@{$args->{'bread_crumbs'}}){ |
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
} |
} |
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
} |
|
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
} |
} |
|
|
return $result; |
return $result; |