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
7f67e9a0
Commit
7f67e9a0
authored
Sep 13, 2012
by
kimth
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #668 from MITx/bug/kfiedler/ie
Fix IE bugs including schematic editor text alignment
parents
5450ddbd
da87af53
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
33 additions
and
17 deletions
+33
-17
common/lib/xmodule/xmodule/css/capa/display.scss
+4
-0
lms/static/sass/base/_base.scss
+1
-0
lms/static/sass/course/courseware/_courseware.scss
+1
-1
lms/static/sass/ie.scss
+9
-2
lms/static/sass/shared/_footer.scss
+1
-0
lms/templates/login_modal.html
+2
-2
lms/templates/main.html
+3
-3
lms/templates/main_django.html
+5
-2
lms/templates/signup_modal.html
+7
-7
No files found.
common/lib/xmodule/xmodule/css/capa/display.scss
View file @
7f67e9a0
...
@@ -311,6 +311,10 @@ section.problem {
...
@@ -311,6 +311,10 @@ section.problem {
text-align
:
left
;
text-align
:
left
;
}
}
td
{
text-align
:
left
;
}
caption
,
th
,
td
{
caption
,
th
,
td
{
padding
:
.25em
.75em
.25em
0
;
padding
:
.25em
.75em
.25em
0
;
padding
:
.25rem
.75rem
.25rem
0
;
padding
:
.25rem
.75rem
.25rem
0
;
...
...
lms/static/sass/base/_base.scss
View file @
7f67e9a0
...
@@ -2,6 +2,7 @@ html, body {
...
@@ -2,6 +2,7 @@ html, body {
background
:
rgb
(
250
,
250
,
250
);
background
:
rgb
(
250
,
250
,
250
);
font-family
:
$sans-serif
;
font-family
:
$sans-serif
;
font-size
:
1em
;
font-size
:
1em
;
font-style
:
normal
;
line-height
:
1em
;
line-height
:
1em
;
//-webkit-font-smoothing: antialiased;
//-webkit-font-smoothing: antialiased;
}
}
...
...
lms/static/sass/course/courseware/_courseware.scss
View file @
7f67e9a0
...
@@ -87,7 +87,7 @@ div.course-wrapper {
...
@@ -87,7 +87,7 @@ div.course-wrapper {
ul
{
ul
{
list-style
:
disc
outside
none
;
list-style
:
disc
outside
none
;
padding-left
:
1em
;
padding-left
:
1em
;
&
.discussion-errors
{
&
.discussion-errors
{
list-style
:
none
;
list-style
:
none
;
padding-left
:
2em
;
padding-left
:
2em
;
...
...
lms/static/sass/ie.scss
View file @
7f67e9a0
...
@@ -130,6 +130,13 @@ header.global {
...
@@ -130,6 +130,13 @@ header.global {
background
:
#000
;
background
:
#000
;
}
}
.modal
.inner-wrapper
form
label
{
nav
.course-material
ol
.course-tabs
li
a
.active
,
nav
.course-material
.xmodule_SequenceModule
nav
.sequence-nav
ol
.course-tabs
li
a
.seq_video.active
,
.xmodule_SequenceModule
nav
.sequence-nav
nav
.course-material
ol
.course-tabs
li
a
.seq_video.active
{
display
:
block
;
background-color
:
#333
;
background-color
:
rgba
(
0
,
0
,
0
,
.4
);
}
}
header
.global
ol
.user
>
li
.primary
a
.dropdown
{
padding-top
:
6px
;
padding-bottom
:
6px
;
}
lms/static/sass/shared/_footer.scss
View file @
7f67e9a0
...
@@ -110,6 +110,7 @@ footer {
...
@@ -110,6 +110,7 @@ footer {
padding
:
0
;
padding
:
0
;
a
{
a
{
@include
inline-block
;
opacity
:
0
.3
;
opacity
:
0
.3
;
@include
transition
(
all
,
0
.1s
,
linear
);
@include
transition
(
all
,
0
.1s
,
linear
);
...
...
lms/templates/login_modal.html
View file @
7f67e9a0
...
@@ -10,9 +10,9 @@
...
@@ -10,9 +10,9 @@
<form
id=
"login_form"
class=
"login_form"
method=
"post"
data-remote=
"true"
action=
"/login"
>
<form
id=
"login_form"
class=
"login_form"
method=
"post"
data-remote=
"true"
action=
"/login"
>
<label>
E-mail
</label>
<label>
E-mail
</label>
<input
name=
"email"
type=
"email"
placeholder=
"E-mail"
>
<input
name=
"email"
type=
"email"
>
<label>
Password
</label>
<label>
Password
</label>
<input
name=
"password"
type=
"password"
placeholder=
"Password"
>
<input
name=
"password"
type=
"password"
>
<label
class=
"remember-me"
>
<label
class=
"remember-me"
>
<input
name=
"remember"
type=
"checkbox"
value=
"true"
>
<input
name=
"remember"
type=
"checkbox"
value=
"true"
>
Remember me
Remember me
...
...
lms/templates/main.html
View file @
7f67e9a0
...
@@ -8,9 +8,6 @@
...
@@ -8,9 +8,6 @@
<
%
static:css
group=
'application'
/>
<
%
static:css
group=
'application'
/>
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<
%
static:js
group=
'main_vendor'
/>
<
%
static:js
group=
'main_vendor'
/>
<
%
block
name=
"headextra"
/>
<
%
block
name=
"headextra"
/>
...
@@ -19,6 +16,9 @@
...
@@ -19,6 +16,9 @@
<script src="${static.url('js/html5shiv.js')}"></script>
<script src="${static.url('js/html5shiv.js')}"></script>
<![endif]-->
<![endif]-->
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<meta
name=
"path_prefix"
content=
"${MITX_ROOT_URL}"
>
<meta
name=
"path_prefix"
content=
"${MITX_ROOT_URL}"
>
</head>
</head>
...
...
lms/templates/main_django.html
View file @
7f67e9a0
...
@@ -12,6 +12,10 @@
...
@@ -12,6 +12,10 @@
{% render_block "css" %}
{% render_block "css" %}
<meta
name=
"path_prefix"
content=
"{{MITX_ROOT_URL}}"
>
<meta
name=
"path_prefix"
content=
"{{MITX_ROOT_URL}}"
>
<!--[if lt IE 9]>
<script src="{% static "js/html5shiv.js" %}"></script>
<![endif]-->
</head>
</head>
...
@@ -40,4 +44,4 @@
...
@@ -40,4 +44,4 @@
Inheriting from this file allows us to include apps that use the
Inheriting from this file allows us to include apps that use the
django templating system without rewriting all of their views in
django templating system without rewriting all of their views in
mako.
mako.
{% endcomment %}
{% endcomment %}
\ No newline at end of file
lms/templates/signup_modal.html
View file @
7f67e9a0
...
@@ -21,18 +21,18 @@
...
@@ -21,18 +21,18 @@
<div
class=
"input-group"
>
<div
class=
"input-group"
>
% if has_extauth_info is UNDEFINED:
% if has_extauth_info is UNDEFINED:
<label
data-field=
"email"
>
E-mail*
</label>
<label
data-field=
"email"
>
E-mail*
</label>
<input
name=
"email"
type=
"email"
placeholder=
"
E-mail*
"
>
<input
name=
"email"
type=
"email"
placeholder=
"
eg. example@edx.org
"
>
<label
data-field=
"password"
>
Password*
</label>
<label
data-field=
"password"
>
Password*
</label>
<input
name=
"password"
type=
"password"
placeholder=
"
Password
*"
>
<input
name=
"password"
type=
"password"
placeholder=
"
***
*"
>
<label
data-field=
"username"
>
Public Username*
</label>
<label
data-field=
"username"
>
Public Username*
</label>
<input
name=
"username"
type=
"text"
placeholder=
"
Public Username*
"
>
<input
name=
"username"
type=
"text"
placeholder=
"
Shown on forms
"
>
<label
data-field=
"name"
>
Full Name
</label>
<label
data-field=
"name"
>
Full Name
</label>
<input
name=
"name"
type=
"text"
placeholder=
"F
ull Name*
"
>
<input
name=
"name"
type=
"text"
placeholder=
"F
or your certificate
"
>
% else:
% else:
<p><i>
Welcome
</i>
${extauth_email}
</p><br/>
<p><i>
Welcome
</i>
${extauth_email}
</p><br/>
<p><i>
Enter a public username:
</i></p>
<p><i>
Enter a public username:
</i></p>
<label
data-field=
"username"
>
Public Username*
</label>
<label
data-field=
"username"
>
Public Username*
</label>
<input
name=
"username"
type=
"text"
value=
"${extauth_username}"
placeholder=
"
Public Username*
"
>
<input
name=
"username"
type=
"text"
value=
"${extauth_username}"
placeholder=
"
Shown on forums
"
>
% endif
% endif
</div>
</div>
...
@@ -75,9 +75,9 @@
...
@@ -75,9 +75,9 @@
</section>
</section>
<label
data-field=
"mailing_address"
>
Mailing address
</label>
<label
data-field=
"mailing_address"
>
Mailing address
</label>
<textarea
name=
"mailing_address"
placeholder=
"Mailing address"
></textarea>
<textarea
name=
"mailing_address"
></textarea>
<label
data-field=
"goals"
>
Goals in signing up for edX
</label>
<label
data-field=
"goals"
>
Goals in signing up for edX
</label>
<textarea
name=
"goals"
placeholder=
"Goals in signing up for edX"
></textarea>
<textarea
name=
"goals"
></textarea>
</div>
</div>
...
...
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