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
72ca88c4
Commit
72ca88c4
authored
Jun 19, 2015
by
Clinton Blackburn
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8578 from edx/clintonb/checkout-button-update
Updated Payment Buttons
parents
5fb2a1fd
1281532b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
lms/static/js/verify_student/views/make_payment_step_view.js
+4
-1
lms/static/sass/_developer.scss
+1
-1
lms/static/sass/views/_verification.scss
+1
-1
No files found.
lms/static/js/verify_student/views/make_payment_step_view.js
View file @
72ca88c4
...
@@ -68,6 +68,9 @@ var edx = edx || {};
...
@@ -68,6 +68,9 @@ var edx = edx || {};
templateContext
.
requirements
,
templateContext
.
requirements
,
function
(
isVisible
)
{
return
isVisible
;
}
function
(
isVisible
)
{
return
isVisible
;
}
),
),
// This a hack to appease /lms/static/js/spec/verify_student/pay_and_verify_view_spec.js,
// which does not load an actual template context.
processors
=
templateContext
.
processors
||
[],
self
=
this
;
self
=
this
;
// Track a virtual pageview, for easy funnel reconstruction.
// Track a virtual pageview, for easy funnel reconstruction.
...
@@ -100,7 +103,7 @@ var edx = edx || {};
...
@@ -100,7 +103,7 @@ var edx = edx || {};
);
);
// create a button for each payment processor
// create a button for each payment processor
_
.
each
(
templateContext
.
processors
,
function
(
processorName
)
{
_
.
each
(
processors
.
reverse
()
,
function
(
processorName
)
{
$
(
'div.payment-buttons'
).
append
(
self
.
_getPaymentButtonHtml
(
processorName
)
);
$
(
'div.payment-buttons'
).
append
(
self
.
_getPaymentButtonHtml
(
processorName
)
);
});
});
...
...
lms/static/sass/_developer.scss
View file @
72ca88c4
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
@include
margin-left
(
(
$baseline
/
2
)
);
@include
margin-left
(
(
$baseline
/
2
)
);
&
.is-selected
{
&
.is-selected
{
background
:
$m-
blue-d3
!
important
;
background
:
$m-
green-s1
!
important
;
}
}
}
}
}
}
...
...
lms/static/sass/views/_verification.scss
View file @
72ca88c4
...
@@ -165,7 +165,7 @@
...
@@ -165,7 +165,7 @@
// elements - controls
// elements - controls
.action-primary
{
.action-primary
{
@extend
%btn-
primary-blue
;
@extend
%btn-
verify-primary
;
// needed for override due to .register a:link styling
// needed for override due to .register a:link styling
border
:
0
!
important
;
border
:
0
!
important
;
color
:
$white
!
important
;
color
:
$white
!
important
;
...
...
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