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
ba6b0cf4
Commit
ba6b0cf4
authored
Apr 30, 2014
by
Giulio Gratta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes for Help Modal to work on Stanford Site
- moved zendesk endpoint to new condition - some help modal styling
parent
07c8e4ac
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 @
ba6b0cf4
...
...
@@ -225,7 +225,7 @@ mark {
.help-tab
{
@include
transform
(
rotate
(
-90deg
));
@include
transform-origin
(
0
0
);
top
:
50%
;
top
:
250px
;
left
:
0
;
position
:
fixed
;
z-index
:
99
;
...
...
@@ -244,7 +244,7 @@ mark {
&
:hover
,
&
:focus
{
color
:
#fff
;
background
:
#1D9DD9
;
background
:
$link-color
;
}
}
}
...
...
@@ -273,13 +273,24 @@ mark {
&
:hover
,
&
:focus
{
color
:
#fff
;
background
:
#1D9DD9
;
background
:
$link-color
;
}
}
}
#feedback_form
textarea
[
name
=
"details"
]
{
height
:
150px
;
#feedback_form
{
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 @
ba6b0cf4
...
...
@@ -68,6 +68,9 @@ urlpatterns = ('', # nopep8
url
(
r'^i18n/'
,
include
(
'django.conf.urls.i18n'
)),
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"):
...
...
@@ -122,9 +125,6 @@ if not settings.FEATURES["USE_CUSTOM_THEME"]:
# Favicon
(
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
...
...
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