[LON-CAPA-cvs] cvs: loncom /auth lonlogin.pm /interface loncommon.pm
raeburn
raeburn at source.lon-capa.org
Wed Jan 28 12:46:12 EST 2026
raeburn Wed Jan 28 17:46:12 2026 EDT
Modified files:
/loncom/interface loncommon.pm
/loncom/auth lonlogin.pm
Log:
- WCAG 2 compliance
Change class name, given use in satisfying WCAG SC 2.5.8 in more contexts.
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.1504 loncom/interface/loncommon.pm:1.1505
--- loncom/interface/loncommon.pm:1.1504 Mon Jan 26 17:34:25 2026
+++ loncom/interface/loncommon.pm Wed Jan 28 17:46:10 2026
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.1504 2026/01/26 17:34:25 raeburn Exp $
+# $Id: loncommon.pm,v 1.1505 2026/01/28 17:46:10 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -9772,7 +9772,7 @@
/*
styles used for response display
*/
-div.LC_radiofoil, div.LC_rankfoil, div.LC_optionfoil, div.LC_matchfoil, div.LC_login_links {
+div.LC_radiofoil, div.LC_rankfoil, div.LC_optionfoil, div.LC_matchfoil, div.LC_touch_target {
margin: .51em 0em .51em 0em;
}
table.LC_itemgroup {
Index: loncom/auth/lonlogin.pm
diff -u loncom/auth/lonlogin.pm:1.215 loncom/auth/lonlogin.pm:1.216
--- loncom/auth/lonlogin.pm:1.215 Sat Dec 13 05:56:02 2025
+++ loncom/auth/lonlogin.pm Wed Jan 28 17:46:12 2026
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Login Screen
#
-# $Id: lonlogin.pm,v 1.215 2025/12/13 05:56:02 raeburn Exp $
+# $Id: lonlogin.pm,v 1.216 2026/01/28 17:46:12 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -875,12 +875,12 @@
my $forgotpw = &forgotpwdisplay(%lt);
if ($forgotpw) {
- $forgotpw = '<div class="LC_login_links">'.
+ $forgotpw = '<div class="LC_touch_target">'.
$forgotpw.'</div>';
}
my $loginhelp = &Apache::lonauth::loginhelpdisplay($authdomain);
if ($loginhelp) {
- $loginhelp = '<div class="LC_login_links">'.
+ $loginhelp = '<div class="LC_touch_target">'.
'<a href="'.$loginhelp.'">'.$lt{'help'}.'</a></div>';
}
@@ -918,12 +918,12 @@
ENDSERVERFORM
my $coursecatalog;
if (($showcoursecat eq '') || ($showcoursecat)) {
- $coursecatalog = '<div class="LC_login_links">'.
+ $coursecatalog = '<div class="LC_touch_target">'.
&coursecatalog_link($lt{'catalog'}).'</div>';
}
my $newuserlink;
if ($shownewuserlink) {
- $newuserlink = '<div class="LC_login_links">'.
+ $newuserlink = '<div class="LC_touch_target">'.
&newuser_link($lt{'newuser'}).'</div>';
}
my $logintitle =
@@ -1398,11 +1398,11 @@
}
}
if ($servadm && $showadminmail) {
- $contactblock = '<div class="LC_login_links">'.$lt->{'servadm'}.':<br />'.
+ $contactblock = '<div class="LC_touch_target">'.$lt->{'servadm'}.':<br />'.
'<tt>'.$servadm.'</tt></div>';
}
if ($showhelpdesk) {
- $contactblock .= '<div class="LC_login_links">'.
+ $contactblock .= '<div class="LC_touch_target">'.
'<a href="javascript:helpdesk()">'.$lt->{'helpdesk'}.'</a></div>';
my $thisurl = &escape('/adm/login');
$$helpdeskscript = <<"ENDSCRIPT";
More information about the LON-CAPA-cvs
mailing list