version 1.711, 2008/12/08 22:43:52
|
version 1.718, 2008/12/15 16:37:44
|
Line 1686 sub select_form {
|
Line 1686 sub select_form {
|
sub display_filter { |
sub display_filter { |
if (!$env{'form.show'}) { $env{'form.show'}=10; } |
if (!$env{'form.show'}) { $env{'form.show'}=10; } |
if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; } |
if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; } |
return '<nobr><label>'.&mt('Records [_1]', |
return '<span class="LC_nobreak"><label>'.&mt('Records [_1]', |
&Apache::lonmeta::selectbox('show',$env{'form.show'},undef, |
&Apache::lonmeta::selectbox('show',$env{'form.show'},undef, |
(&mt('all'),10,20,50,100,1000,10000))). |
(&mt('all'),10,20,50,100,1000,10000))). |
'</label></nobr> <nobr>'. |
'</label></span> <span class="LC_nobreak">'. |
&mt('Filter [_1]', |
&mt('Filter [_1]', |
&select_form($env{'form.displayfilter'}, |
&select_form($env{'form.displayfilter'}, |
'displayfilter', |
'displayfilter', |
('currentfolder' => 'Current folder/page', |
('currentfolder' => 'Current folder/page', |
'containing' => 'Containing phrase', |
'containing' => 'Containing phrase', |
'none' => 'None'))). |
'none' => 'None'))). |
'<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></nobr>'; |
'<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></span>'; |
} |
} |
|
|
sub gradeleveldescription { |
sub gradeleveldescription { |
Line 4392 sub standard_css {
|
Line 4392 sub standard_css {
|
my $link = &designparm($function.'.link', $domain); |
my $link = &designparm($function.'.link', $domain); |
|
|
my $loginbg = &designparm('login.sidebg',$domain); |
my $loginbg = &designparm('login.sidebg',$domain); |
|
my $bgcol = &designparm('login.bgcol',$domain); |
|
my $textcol = &designparm('login.textcol',$domain); |
|
|
my $sans = 'Verdana,Arial,Helvetica,sans-serif'; |
my $sans = 'Verdana,Arial,Helvetica,sans-serif'; |
my $mono = 'monospace'; |
my $mono = 'monospace'; |
Line 4665 td.LC_menubuttons_text {
|
Line 4667 td.LC_menubuttons_text {
|
font-size: small; |
font-size: small; |
} |
} |
|
|
|
.LC_mail_functions { |
|
font-weight: bold; |
|
} |
|
|
table.LC_aboutme_port { |
table.LC_aboutme_port { |
border: 0px; |
border: 0px; |
border-collapse: collapse; |
border-collapse: collapse; |
Line 5442 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 5699 div.columnSection > .ContentBoxSpecial
|
Line 5709 div.columnSection > .ContentBoxSpecial
|
width:65%; |
width:65%; |
padding: 10px; |
padding: 10px; |
height: auto; |
height: auto; |
# background-color:#FFFFFF; |
background-color:#FFFFFF; |
background-color:$loginbg; |
|
border:1px solid #CCCCCC; |
border:1px solid #CCCCCC; |
} |
} |
|
|
|
|
.LC_loginpage_loginContainer { |
.LC_loginpage_loginContainer { |
float:left; |
float:left; |
width:60%; |
width: 182px; |
|
border:1px solid #CCCCCC; |
|
background-color:$loginbg; |
} |
} |
|
|
|
.LC_loginpage_loginContainer h2{ |
|
margin-top:0; |
|
display:block; |
|
background:$bgcol; |
|
color:$textcol; |
|
padding-left:5px; |
|
} |
.LC_loginpage_loginInfo { |
.LC_loginpage_loginInfo { |
margin-top:20px; |
|
margin-left:20px; |
margin-left:20px; |
float:left; |
float:left; |
width:30%; |
width:30%; |
Line 5719 div.columnSection > .ContentBoxSpecial
|
Line 5736 div.columnSection > .ContentBoxSpecial
|
padding:10px; |
padding:10px; |
} |
} |
|
|
|
.LC_loginpage_loginDomain { |
|
margin-right:20px; |
|
width:20%; |
|
float:left; |
|
padding:10px; |
|
} |
|
|
.LC_loginpage_space { |
.LC_loginpage_space { |
clear:both; |
clear:both; |
margin-bottom:20px; |
margin-bottom:20px; |
Line 5738 div.columnSection > .ContentBoxSpecial
|
Line 5762 div.columnSection > .ContentBoxSpecial
|
} |
} |
|
|
|
|
|
|
END |
END |
} |
} |
|
|
Line 6002 sub start_page {
|
Line 6025 sub start_page {
|
} |
} |
|
|
if ($args->{'js_ready'}) { |
if ($args->{'js_ready'}) { |
$result = &js_ready($result); |
$result = &js_ready($result); |
} |
} |
if ($args->{'html_encode'}) { |
if ($args->{'html_encode'}) { |
$result = &html_encode($result); |
$result = &html_encode($result); |
} |
} |
|
|
|
if (exists($args->{'bread_crumbs'})) { |
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
|
if (ref($args->{'bread_crumbs'}) eq 'ARRAY') { |
|
foreach my $crumb (@{$args->{'bread_crumbs'}}){ |
|
&Apache::lonhtmlcommon::add_breadcrumb($crumb); |
|
} |
|
} |
|
$result .= &Apache::lonhtmlcommon::breadcrumbs(); |
|
} |
|
|
return $result; |
return $result; |
} |
} |
|
|