Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
problem-builder
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
OpenEdx
problem-builder
Commits
eb76233b
Commit
eb76233b
authored
Jun 04, 2014
by
Xavier Antoviaque
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #47 from edx-solutions/css-fixes
CSS Fixes - Additional fixes of CSS from QA
parents
de15c188
a7d2bacf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
20 deletions
+25
-20
mentoring/public/css/mentoring.css
+11
-3
mentoring/public/css/questionnaire.css
+6
-7
mentoring/templates/html/mentoring.html
+1
-1
mentoring/templates/html/mrqblock_choices.html
+7
-9
No files found.
mentoring/public/css/mentoring.css
View file @
eb76233b
...
...
@@ -14,7 +14,7 @@
text-transform
:
uppercase
;
font-weight
:
bold
;
font-style
:
normal
;
font-size
:
0.9em
;
font-size
:
14px
;
margin-bottom
:
5px
;
}
...
...
@@ -86,10 +86,18 @@
height
:
33.33px
;
}
.mentoring
input
[
type
=
button
]
{
.mentoring
input
[
type
=
button
],
.mentoring
input
[
type
=
button
]
:focus
{
background-color
:
#3384ca
;
}
.mentoring
input
[
type
=
button
][
disabled
],
.mentoring
input
[
type
=
button
][
disabled
]
:hover
{
.mentoring
input
[
type
=
button
][
disabled
],
.mentoring
input
[
type
=
button
][
disabled
]
:hover
,
.mentoring
input
[
type
=
button
][
disabled
]
:focus
{
background-color
:
#cccccc
;
}
.mentoring
input
[
type
=
"checkbox"
],
.mentoring
input
[
type
=
"radio"
]
{
margin
:
0
;
}
mentoring/public/css/questionnaire.css
View file @
eb76233b
...
...
@@ -4,17 +4,12 @@
margin-bottom
:
10px
;
}
.mentoring
.choices
.choice-checkbox
{
display
:
inline-block
;
margin-top
:
5px
;
margin-bottom
:
5px
;
}
.mentoring
.questionnaire
.choice-result
{
display
:
inline-block
;
width
:
40px
;
vertical-align
:
middle
;
cursor
:
pointer
;
float
:
left
;
}
.mentoring
.questionnaire
.choice
{
...
...
@@ -78,5 +73,9 @@
}
.mentoring
.choice-label
{
margin-top
:
5px
;
margin-top
:
8px
;
margin-bottom
:
5px
;
padding-left
:
70px
;
text-indent
:
-22px
;
line-height
:
1.3
;
}
mentoring/templates/html/mentoring.html
View file @
eb76233b
...
...
@@ -14,7 +14,7 @@
{% endfor %}
{% if self.display_submit %}
<div
class=
"submit"
>
<input
type=
"button"
class=
"input-main"
value=
"Submit"
></input>
<input
type=
"button"
class=
"input-main"
value=
"Submit"
disabled=
"disabled"
></input>
<div
class=
"attempts"
data-max_attempts=
"{{ self.max_attempts }}"
data-num_attempts=
"{{ self.num_attempts }}"
></div>
</div>
{% endif %}
...
...
mentoring/templates/html/mrqblock_choices.html
View file @
eb76233b
...
...
@@ -8,15 +8,13 @@
{% for choice in custom_choices %}
<div
class=
"choice"
>
<div
class=
"choice-result icon-2x"
></div>
<div
class=
"choice-checkbox"
>
<label
class=
"choice-label"
>
<input
class=
"choice-selector"
type=
"checkbox"
name=
"{{ self.name }}"
value=
"{{ choice.value }}"
{%
if
choice
.
value
in
self
.
student_choices
%}
checked
{%
endif
%}
>
{{ choice.content }}
</input>
</label>
</div>
<label
class=
"choice-label"
>
<input
class=
"choice-selector"
type=
"checkbox"
name=
"{{ self.name }}"
value=
"{{ choice.value }}"
{%
if
choice
.
value
in
self
.
student_choices
%}
checked
{%
endif
%}
>
{{ choice.content }}
</input>
</label>
<div
class=
"choice-tips"
></div>
</div>
{% endfor %}
...
...
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