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
5148746d
Commit
5148746d
authored
May 16, 2012
by
Edward Loveall
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes border radius overflow issue on course content wrapper
parent
1e8ab224
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
3 deletions
+31
-3
static/css/application.css
+27
-3
templates/sass/courseware/_courseware.scss
+2
-0
templates/sass/courseware/_sequence-nav.scss
+2
-0
No files found.
static/css/application.css
View file @
5148746d
...
...
@@ -2694,7 +2694,19 @@ body.courseware {
div
.course-wrapper
ul
,
div
.course-wrapper
ol
{
list-style
:
none
;
}
div
.course-wrapper
section
.course-content
{
overflow
:
hidden
;
}
overflow
:
hidden
;
-webkit-border-top-right-radius
:
4px
;
-moz-border-top-right-radius
:
4px
;
-moz-border-radius-topright
:
4px
;
-ms-border-top-right-radius
:
4px
;
-o-border-top-right-radius
:
4px
;
border-top-right-radius
:
4px
;
-webkit-border-bottom-right-radius
:
4px
;
-moz-border-bottom-right-radius
:
4px
;
-moz-border-radius-bottomright
:
4px
;
-ms-border-bottom-right-radius
:
4px
;
-o-border-bottom-right-radius
:
4px
;
border-bottom-right-radius
:
4px
;
}
div
.course-wrapper
section
.course-content
h1
{
margin
:
0
0
22.652px
;
}
div
.course-wrapper
section
.course-content
p
{
...
...
@@ -3569,7 +3581,13 @@ div.course-wrapper.closed section.course-content div.video-subtitles ol.subtitle
nav
.sequence-nav
{
border-bottom
:
1px
solid
#e4d080
;
margin-bottom
:
22.652px
;
position
:
relative
;
}
position
:
relative
;
-webkit-border-top-right-radius
:
4px
;
-moz-border-top-right-radius
:
4px
;
-moz-border-radius-topright
:
4px
;
-ms-border-top-right-radius
:
4px
;
-o-border-top-right-radius
:
4px
;
border-top-right-radius
:
4px
;
}
nav
.sequence-nav
ol
{
-webkit-box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
...
...
@@ -3754,7 +3772,13 @@ nav.sequence-nav ul li.prev a {
nav
.sequence-nav
ul
li
.prev
a
:hover
{
background-color
:
none
;
}
nav
.sequence-nav
ul
li
.next
a
{
background-image
:
url("/static/images/sequence-nav/next-icon.png")
;
}
background-image
:
url("/static/images/sequence-nav/next-icon.png")
;
-webkit-border-top-right-radius
:
4px
;
-moz-border-top-right-radius
:
4px
;
-moz-border-radius-topright
:
4px
;
-ms-border-top-right-radius
:
4px
;
-o-border-top-right-radius
:
4px
;
border-top-right-radius
:
4px
;
}
nav
.sequence-nav
ul
li
.next
a
:hover
{
background-color
:
none
;
}
...
...
templates/sass/courseware/_courseware.scss
View file @
5148746d
...
...
@@ -18,6 +18,8 @@ div.course-wrapper {
section
.course-content
{
@extend
.content
;
overflow
:
hidden
;
@include
border-top-right-radius
(
4px
);
@include
border-bottom-right-radius
(
4px
);
h1
{
margin
:
0
0
lh
();
...
...
templates/sass/courseware/_sequence-nav.scss
View file @
5148746d
...
...
@@ -3,6 +3,7 @@ nav.sequence-nav {
border-bottom
:
1px
solid
darken
(
$cream
,
20%
);
margin-bottom
:
$body-line-height
;
position
:
relative
;
@include
border-top-right-radius
(
4px
);
ol
{
@include
box-sizing
(
border-box
);
...
...
@@ -221,6 +222,7 @@ nav.sequence-nav {
&
.next
{
a
{
background-image
:
url('/static/images/sequence-nav/next-icon.png')
;
@include
border-top-right-radius
(
4px
);
&
:hover
{
background-color
:
none
;
...
...
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