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
6963d24e
Commit
6963d24e
authored
May 07, 2014
by
Giulio Gratta
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3597 from caesar2164/giulio/help-modal-features
Changes for Help Modal to work on Stanford Site
parents
5e34c21f
ba6b0cf4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
8 deletions
+19
-8
lms/static/sass/base/_base.scss
+16
-5
lms/urls.py
+3
-3
No files found.
lms/static/sass/base/_base.scss
View file @
6963d24e
...
@@ -225,7 +225,7 @@ mark {
...
@@ -225,7 +225,7 @@ mark {
.help-tab
{
.help-tab
{
@include
transform
(
rotate
(
-90deg
));
@include
transform
(
rotate
(
-90deg
));
@include
transform-origin
(
0
0
);
@include
transform-origin
(
0
0
);
top
:
50%
;
top
:
250px
;
left
:
0
;
left
:
0
;
position
:
fixed
;
position
:
fixed
;
z-index
:
99
;
z-index
:
99
;
...
@@ -244,7 +244,7 @@ mark {
...
@@ -244,7 +244,7 @@ mark {
&
:hover
,
&
:focus
{
&
:hover
,
&
:focus
{
color
:
#fff
;
color
:
#fff
;
background
:
#1D9DD9
;
background
:
$link-color
;
}
}
}
}
}
}
...
@@ -273,13 +273,24 @@ mark {
...
@@ -273,13 +273,24 @@ mark {
&
:hover
,
&
:focus
{
&
:hover
,
&
:focus
{
color
:
#fff
;
color
:
#fff
;
background
:
#1D9DD9
;
background
:
$link-color
;
}
}
}
}
}
}
#feedback_form
textarea
[
name
=
"details"
]
{
#feedback_form
{
height
:
150px
;
input
,
textarea
{
font
:
normal
1em
/
1
.4em
$sans-serif
;
}
textarea
[
name
=
"details"
]
{
height
:
150px
;
}
}
#feedback_success_wrapper
{
p
{
padding
:
0
20px
20px
20px
;
}
}
}
// ====================
// ====================
...
...
lms/urls.py
View file @
6963d24e
...
@@ -68,6 +68,9 @@ urlpatterns = ('', # nopep8
...
@@ -68,6 +68,9 @@ urlpatterns = ('', # nopep8
url
(
r'^i18n/'
,
include
(
'django.conf.urls.i18n'
)),
url
(
r'^i18n/'
,
include
(
'django.conf.urls.i18n'
)),
url
(
r'^embargo$'
,
'student.views.embargo'
,
name
=
"embargo"
),
url
(
r'^embargo$'
,
'student.views.embargo'
,
name
=
"embargo"
),
# Feedback Form endpoint
url
(
r'^submit_feedback$'
,
'util.views.submit_feedback'
),
)
)
# if settings.FEATURES.get("MULTIPLE_ENROLLMENT_ROLES"):
# if settings.FEATURES.get("MULTIPLE_ENROLLMENT_ROLES"):
...
@@ -122,9 +125,6 @@ if not settings.FEATURES["USE_CUSTOM_THEME"]:
...
@@ -122,9 +125,6 @@ if not settings.FEATURES["USE_CUSTOM_THEME"]:
# Favicon
# Favicon
(
r'^favicon\.ico$'
,
'django.views.generic.simple.redirect_to'
,
{
'url'
:
'/static/images/favicon.ico'
}),
(
r'^favicon\.ico$'
,
'django.views.generic.simple.redirect_to'
,
{
'url'
:
'/static/images/favicon.ico'
}),
url
(
r'^submit_feedback$'
,
'util.views.submit_feedback'
),
)
)
# Only enable URLs for those marketing links actually enabled in the
# Only enable URLs for those marketing links actually enabled in the
...
...
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