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
89afc98f
Commit
89afc98f
authored
May 14, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made links in sidebar all in p>
parent
8567fb16
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
static/css/application.css
+0
-0
static/css/marketing-ie.css
+0
-3
static/css/marketing.css
+0
-0
templates/accordion.html
+4
-3
templates/sass/courseware/_sidebar.scss
+3
-2
No files found.
static/css/application.css
View file @
89afc98f
This source diff could not be displayed because it is too large. You can
view the blob
instead.
static/css/marketing-ie.css
View file @
89afc98f
/* line 1, sass/marketing-ie.scss */
body
{
margin
:
0
;
padding
:
0
;
}
/* line 6, sass/marketing-ie.scss */
.wrapper
,
.subpage
,
section
.copyright
,
section
.tos
,
section
.privacy-policy
,
section
.honor-code
,
header
.announcement
div
,
section
.index-content
,
footer
{
margin
:
0
;
overflow
:
hidden
;
}
/* line 12, sass/marketing-ie.scss */
div
#enroll
form
{
display
:
none
;
}
static/css/marketing.css
View file @
89afc98f
This diff is collapsed.
Click to expand it.
templates/accordion.html
View file @
89afc98f
...
...
@@ -9,11 +9,12 @@
% for section in chapter['sections']:
<li
${'
class=
"active"
'
if
'
active
'
in
section
and
section
['
active
']
else
''}
>
<a
href=
"${reverse('courseware_section', args=format_url_params([course_name, chapter['name'], section['name']]))}"
>
<p>
${section['name']}
</p>
<p
class=
"subtitle"
>
<p>
${section['name']}
<span
class=
"subtitle"
>
${section['format']} ${"due " + section['due'] if 'due' in section and section['due'] != '' else ''}
</span>
</p>
</a>
% endfor
</ul>
...
...
templates/sass/courseware/_sidebar.scss
View file @
89afc98f
...
...
@@ -47,7 +47,7 @@ section.course-index {
&
.active
{
font-weight
:
bold
;
p
.subtitle
{
span
.subtitle
{
font-weight
:
normal
;
}
...
...
@@ -80,8 +80,9 @@ section.course-index {
p
{
margin-bottom
:
0
;
&
.subtitle
{
span
.subtitle
{
color
:
#666
;
display
:
block
;
}
}
}
...
...
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