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
310788ca
Commit
310788ca
authored
Aug 10, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #384 from MITx/feature/tomg/fall-design
fixed course name title bar bug
parents
1009d289
53818517
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
5 deletions
+24
-5
lms/static/sass/base/_extends.scss
+7
-0
lms/static/sass/course/base/_base.scss
+4
-0
lms/static/sass/course/base/_extends.scss
+9
-0
lms/templates/courseware.html
+0
-1
lms/templates/navigation.html
+4
-4
No files found.
lms/static/sass/base/_extends.scss
View file @
310788ca
...
...
@@ -89,3 +89,9 @@
border
:
1px
solid
rgb
(
6
,
65
,
18
);
color
:
rgb
(
255
,
255
,
255
);
}
.global
{
h2
{
display
:
none
;
}
}
\ No newline at end of file
lms/static/sass/course/base/_base.scss
View file @
310788ca
body
{
min-width
:
980px
;
}
body
,
h1
,
h2
,
h3
,
h4
,
h5
,
h6
,
p
,
p
a
:link
,
p
a
:visited
,
a
{
font-family
:
$sans-serif
;
}
...
...
lms/static/sass/course/base/_extends.scss
View file @
310788ca
...
...
@@ -187,7 +187,13 @@ h1.top-header {
}
.global
{
.find-courses-button
{
display
:
none
;
}
h2
{
display
:
block
;
width
:
700px
;
float
:
left
;
font-size
:
0
.9em
;
font-weight
:
600
;
...
...
@@ -195,6 +201,9 @@ h1.top-header {
letter-spacing
:
0
;
text-transform
:
none
;
text-shadow
:
0
1px
0
#fff
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;
overflow
:
hidden
;
.provider
{
font
:
inherit
;
...
...
lms/templates/courseware.html
View file @
310788ca
<
%
inherit
file=
"main.html"
/>
<
%
namespace
name=
'static'
file=
'static_content.html'
/>
<
%
block
name=
"bodyclass"
>
courseware
</
%
block>
<
%
block
name=
"title"
><title>
Courseware – MITx 6.002x
</title></
%
block>
<
%
block
name=
"headextra"
>
...
...
lms/templates/navigation.html
View file @
310788ca
...
...
@@ -7,16 +7,16 @@
<header
class=
"global"
aria-label=
"Global Navigation"
>
<nav>
<h1
class=
"logo"
><a
href=
"${reverse('root')}"
></a></h1>
%if course:
<h2><span
class=
"provider"
>
${course.org}:
</span>
${course.number} ${course.title}
</h2>
%else:
<ol
class=
"left"
>
%endif
<ol
class=
"left find-courses-button"
>
<li
class=
"primary"
>
<a
href=
"${reverse('courses')}"
>
Find Courses
</a>
</li>
</ol>
%endif
%if user.is_authenticated():
<ol
class=
"user"
>
...
...
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