Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
cee0eb87
Commit
cee0eb87
authored
Mar 01, 2017
by
umar-nawaz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a11y footer links to ul
parent
92348a24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
6 deletions
+16
-6
lms/static/sass/shared/_footer-edx.scss
+4
-2
themes/edx.org/lms/templates/footer.html
+12
-4
No files found.
lms/static/sass/shared/_footer-edx.scss
View file @
cee0eb87
...
...
@@ -35,7 +35,7 @@ footer#footer-edx-v3 {
.site-nav
,
.legal-notices
{
a
{
li
{
@include
font-size
(
14
);
@include
line-height
(
14
);
@include
margin-right
(
20px
);
...
...
@@ -83,7 +83,9 @@ footer#footer-edx-v3 {
width
:
100%
;
}
}
.about-links
,
.legal-links
,
.social-media-links
,
.mobile-app-links
{
@extend
%ui-no-list
;
...
...
themes/edx.org/lms/templates/footer.html
View file @
cee0eb87
...
...
@@ -27,14 +27,22 @@
<div
class=
"site-details"
>
<nav
class=
"site-nav"
aria-label=
"${_("
About
edX
")}"
>
% for link in footer["navigation_links"]:
<a
href=
"${link['url']}"
>
${link['title']}
</a>
% endfor
<ul
class=
"about-links"
>
% for link in footer["navigation_links"]:
<li
class=
"list-item"
>
<a
href=
"${link['url']}"
>
${link['title']}
</a>
</li>
% endfor
</ul>
</nav>
<nav
class=
"legal-notices"
aria-label=
"${_("
Legal
")}"
>
<ul
class=
"legal-links"
>
% for link in footer["legal_links"]:
<a
href=
"${link['url']}"
>
${link['title']}
</a>
<li
class=
"list-item"
>
<a
href=
"${link['url']}"
>
${link['title']}
</a>
</li>
% endfor
</ul>
</nav>
<p
class=
"copyright"
>
${_(
u"\u00A9 2012-{year} edX Inc. All rights reserved except where noted. "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment