settings - field alignment, radio/checkbox formatting
This commit is contained in:
@@ -122,6 +122,7 @@
|
||||
|
||||
&.long {
|
||||
width: 100%;
|
||||
min-width: 400px;
|
||||
}
|
||||
|
||||
&.tall {
|
||||
@@ -144,8 +145,9 @@
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
color: $darkGrey;
|
||||
background: $lightGrey;
|
||||
border-color: $mediumGrey;
|
||||
color: $mediumGrey;
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -170,7 +172,7 @@
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.ui-status-input-checkbox, .ui-status-input-radio {
|
||||
.ui-status-input-checkbox input, .ui-status-input-radio input {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
@@ -180,7 +182,7 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ui-status-input-checkbox ~ label, .ui-status-input-radio ~ label {
|
||||
.ui-status-input-checkbox input ~ label, .ui-status-input-radio input ~ label {
|
||||
position: relative;
|
||||
left: -30px;
|
||||
display: inline-block;
|
||||
@@ -209,21 +211,25 @@
|
||||
}
|
||||
|
||||
.ui-status-indic {
|
||||
position: relative;
|
||||
top: 2px;
|
||||
z-index: 10;
|
||||
display: inline-block;
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
border: 2px;
|
||||
background: $offBlack;
|
||||
opacity: 0.50;
|
||||
@include border-radius(50px);
|
||||
@include box-sizing(border-box);
|
||||
@include transition(opacity 0.25s ease-in-out);
|
||||
}
|
||||
|
||||
.ui-status-input-checkbox:checked ~ label, .ui-status-input-radio:checked ~ label {
|
||||
.ss-check {
|
||||
color: $green;
|
||||
}
|
||||
|
||||
.ss-delete {
|
||||
color: $red;
|
||||
}
|
||||
|
||||
.ui-status-input-checkbox input:checked ~ label, .ui-status-input-radio input:checked ~ label {
|
||||
opacity: 0.99;
|
||||
|
||||
&:after {
|
||||
@@ -237,9 +243,19 @@
|
||||
}
|
||||
}
|
||||
|
||||
.ui-status-input-checkbox:checked ~ .ui-status-indic, .ui-status-input-radio:checked ~ .ui-status-indic {
|
||||
.ui-status-input-checkbox input:checked ~ .ui-status-indic, .ui-status-input-radio input:checked ~ .ui-status-indic {
|
||||
background: transparent url('/static/img/.png') 0 0 no-repeat;
|
||||
opacity: 0.99;
|
||||
}
|
||||
|
||||
// disabled
|
||||
.ui-status-input-checkbox input:disabled, .ui-status-input-radio input:disabled {
|
||||
color: $mediumGrey;
|
||||
}
|
||||
|
||||
.ui-status-input-checkbox input:disabled ~ .ui-status-indic, .ui-status-input-radio input:disabled ~ .ui-status-indic {
|
||||
color: $mediumGrey;
|
||||
}
|
||||
}
|
||||
|
||||
.tip {
|
||||
@@ -309,6 +325,7 @@
|
||||
|
||||
.group {
|
||||
margin-bottom: 10px;
|
||||
max-width: 175px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
@@ -317,6 +334,10 @@
|
||||
input, .input, textarea {
|
||||
|
||||
}
|
||||
|
||||
.tip-stacked {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -325,7 +346,8 @@
|
||||
|
||||
.group {
|
||||
input, .input, textarea {
|
||||
width: 100%;
|
||||
min-width: 370px;
|
||||
width: 370px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -408,6 +430,7 @@
|
||||
.remove-item {
|
||||
clear: both;
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
opacity: 0.75;
|
||||
font-size: 13px;
|
||||
text-align: right;
|
||||
@@ -430,7 +453,21 @@
|
||||
padding: 10px;
|
||||
@include box-sizing(border-box);
|
||||
@include border-radius(5px);
|
||||
font-size: 14px;
|
||||
background: tint($lightGrey, 50%);
|
||||
@include clearfix();
|
||||
|
||||
.doc-filename {
|
||||
display: inline-block;
|
||||
width: 220px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.remove-doc-data {
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -479,14 +516,15 @@
|
||||
}
|
||||
|
||||
.current-faculty-photo {
|
||||
height: 115px;
|
||||
width: 115px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
|
||||
img {
|
||||
display: block;
|
||||
min-height: 100%;
|
||||
max-width: 100%;
|
||||
@include box-shadow(0 1px 3px rgba(0,0,0,0.1));
|
||||
padding: 10px;
|
||||
border: 2px solid $mediumGrey;
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -579,6 +617,12 @@
|
||||
.divide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
i.ss-icon {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -16,7 +16,8 @@ $error-red: rgb(253, 87, 87);
|
||||
$offBlack: #3c3c3c;
|
||||
$blue: #5597dd;
|
||||
$orange: #edbd3c;
|
||||
$red: #e23c3e;
|
||||
$red: #b20610;
|
||||
$green: #108614;
|
||||
$lightGrey: #edf1f5;
|
||||
$mediumGrey: #ced2db;
|
||||
$darkGrey: #8891a1;
|
||||
|
||||
@@ -98,6 +98,7 @@
|
||||
$(this).text(min + '-' + max);
|
||||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</%block>
|
||||
|
||||
@@ -133,7 +134,8 @@
|
||||
<label for="course-name-input">Course Name:</label>
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="long" id="course-name-input" disabled="disabled">
|
||||
<input type="text" class="long" id="course-name-input" value="[Course Name]" disabled="disabled">
|
||||
<span class="tip tip-stacked">This is used in your course URL, and cannot be changed</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -142,7 +144,8 @@
|
||||
<label for="course-organization-input">Organization:</label>
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="long" id="course-organization-input" disabled="disabled">
|
||||
<input type="text" class="long" id="course-organization-input" value="[Course Organization]" disabled="disabled">
|
||||
<span class="tip tip-stacked">This is used in your course URL, and cannot be changed</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -151,8 +154,9 @@
|
||||
<label for="course-number-input">Course Number:</label>
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="short" id="course-number-input" disabled="disabled">
|
||||
<input type="text" class="short" id="course-number-input" value="[Course No.]" disabled="disabled">
|
||||
<span class="tip tip-inline">e.g. 101x</span>
|
||||
<span class="tip tip-stacked">This is used in your course URL, and cannot be changed</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -167,43 +171,41 @@
|
||||
</header>
|
||||
|
||||
<div class="row row-col2">
|
||||
<label for="course-start-date-input">Course Start Date:</label>
|
||||
<h4 class="label">Course Dates:</h4>
|
||||
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="start-date date set-date" id="course-start-date-input" placeholder="MM/DD/YYYY">
|
||||
<span class="tip tip-inline">First day the course begins</span>
|
||||
<div class="input multi multi-inline">
|
||||
<div class="group">
|
||||
<label for="course-start-date-input">Start Date</label>
|
||||
<input type="text" class="start-date date set-date" id="course-start-date-input" placeholder="MM/DD/YYYY">
|
||||
<span class="tip tip-stacked">First day the course begins</span>
|
||||
</div>
|
||||
|
||||
<div class="group">
|
||||
<label for="course-end-date-input">End Date</label>
|
||||
<input type="text" class="start-date date set-date" id="course-end-date-input" placeholder="MM/DD/YYYY">
|
||||
<span class="tip tip-stacked">Last day the course is active</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<label for="course-start-date-input">Course Start Date:</label>
|
||||
<h4 class="label">Enrollment Dates:</h4>
|
||||
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="error start-date date set-date" id="course-start-date-input" placeholder="MM/DD/YYYY" value="12/25/2014">
|
||||
<span class="tip tip-inline">First day the course begins</span>
|
||||
<span class="message-error">The start date of the course cannot be after the end date of the course</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="input multi multi-inline">
|
||||
<div class="group">
|
||||
<label for="course-enrollment-start-date-input">Start Date</label>
|
||||
<input type="text" class="start-date date set-date" id="course-enrollment-start-date-input" placeholder="MM/DD/YYYY">
|
||||
<span class="tip tip-stacked">First day students can enroll</span>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<label for="course-end-date-input">Course End Date:</label>
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="end-date date set-date" id="course-end-date-input" placeholder="MM/DD/YYYY">
|
||||
<span class="tip tip-inline">Last day the course begins</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<label for="course-end-date-input">Course End Date:</label>
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
<input type="text" class="error end-date date set-date" id="course-end-date-input" placeholder="MM/DD/YYYY" value="12/25/2014">
|
||||
<span class="tip tip-inline">Last day the course begins</span>
|
||||
<span class="message-error">The end date of the course cannot be before the start date of the course</span>
|
||||
<div class="group">
|
||||
<label for="course-enrollment-end-date-input">End Date</label>
|
||||
<input type="text" class="start-date date set-date" id="course-enrollment-end-date-input" placeholder="MM/DD/YYYY">
|
||||
<span class="tip tip-stacked">Last day students can enroll</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -227,36 +229,6 @@
|
||||
<a href="#" class="remove-item remove-milestone-data"><span class="delete-icon"></span> Delete Milestone</a>
|
||||
</li>
|
||||
|
||||
<li class="input input-existing multi multi-inline course-milestone-list-item">
|
||||
<div class="group">
|
||||
<label for="course-milestone-1-date-input">Milestone Date</label>
|
||||
<input type="text" id="course-milestone-1-date-input" class="error course-milestone-date-input date set-date" placeholder="MM/DD/YYYY" value="12/25/2014">
|
||||
<span class="message-error">A milestone date cannot be after the end of a course</span>
|
||||
</div>
|
||||
|
||||
<div class="group">
|
||||
<label for="course-milestone-1-name-input">Milestone Name</label>
|
||||
<input type="text" class="course-milestone-name-input" id="course-milestone-1-name-input">
|
||||
</div>
|
||||
|
||||
<a href="#" class="remove-item remove-milestone-data"><span class="delete-icon"></span> Delete Milestone</a>
|
||||
</li>
|
||||
|
||||
<li class="input input-existing multi multi-inline course-milestone-list-item">
|
||||
<div class="group">
|
||||
<label for="course-milestone-1-date-input">Milestone Date</label>
|
||||
<input type="text" id="course-milestone-1-date-input" class="error course-milestone-date-input date set-date" placeholder="MM/DD/YYYY" value="12/25/2011">
|
||||
<span class="message-error">A milestone date cannot be before the start of a course</span>
|
||||
</div>
|
||||
|
||||
<div class="group">
|
||||
<label for="course-milestone-1-name-input">Milestone Name</label>
|
||||
<input type="text" class="course-milestone-name-input" id="course-milestone-1-name-input">
|
||||
</div>
|
||||
|
||||
<a href="#" class="remove-item remove-milestone-data"><span class="delete-icon"></span> Delete Milestone</a>
|
||||
</li>
|
||||
|
||||
<li class="input multi multi-inline course-milestone-list-item">
|
||||
<div class="group">
|
||||
<label for="course-milestone-2-date-input">Milestone Date</label>
|
||||
@@ -281,10 +253,10 @@
|
||||
<div class="field">
|
||||
<div class="input input-existing">
|
||||
<div class=" current current-course-syllabus">
|
||||
<span class="pdf doc-filename">CS184x_syllabus.pdf</span>
|
||||
</div>
|
||||
<span class="doc-filename"><a href="[link to file]".pdf> <i class="ss-icon ss-standard">📄</i>CS184x_syllabus.pdf</a></span>
|
||||
|
||||
<a href="#" class="remove-item remove-course-syllabus remove-doc-data"><span class="delete-icon"></span> Delete Syllabus</a>
|
||||
<a href="#" class="remove-item remove-course-syllabus remove-doc-data"><span class="delete-icon"></span> Delete Syllabus</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
@@ -330,10 +302,10 @@
|
||||
<div class="field">
|
||||
<div class="input input-existing">
|
||||
<div class=" current current-course-introduction-video">
|
||||
<iframe width="370" height="208" src="http://www.youtube.com/embed/6F0pR-ANmXY" frameborder="0" allowfullscreen></iframe>
|
||||
</div>
|
||||
<iframe width="380" height="215" src="http://www.youtube.com/embed/6F0pR-ANmXY" frameborder="0" allowfullscreen></iframe>
|
||||
|
||||
<a href="#" class="remove-item remove-course-introduction-video remove-video-data"><span class="delete-icon"></span> Delete Video</a>
|
||||
<a href="#" class="remove-item remove-course-introduction-video remove-video-data"><span class="delete-icon"></span> Delete Video</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
@@ -515,37 +487,36 @@
|
||||
<div class="field enum">
|
||||
<ul class="input-list course-faculty-list">
|
||||
<li class="input input-existing multi course-faculty-list-item">
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-firstname-input">Faculty First Name:</label>
|
||||
<div class="field">
|
||||
<input type="text" class="long" id="course-faculty-firstname-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-lastname-input">Faculty Last Name:</label>
|
||||
<div class="field">
|
||||
<input type="text" class="long" id="course-faculty-lastname-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-photo-input">Faculty Photo</label>
|
||||
<div class="field">
|
||||
<div class="input input-existing">
|
||||
<div class=" current current-faculty-photo">
|
||||
<img src="http://dummyimage.com/800x600/4d494d/686a82.gif&text=faculty+photo" alt="Faculty Photo" />
|
||||
<div class="current current-faculty-photo">
|
||||
<img src="http://placehold.it/400x300&text=Faculty+Photo" alt="Faculty Photo" />
|
||||
<a href="#" class="remove-item remove-faculty-photo remove-video-data"><span class="delete-icon"></span> Delete Faculty Photo</a>
|
||||
</div>
|
||||
|
||||
<a href="#" class="remove-item remove-faculty-photo remove-video-data"><span class="delete-icon"></span> Delete Faculty Photo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-bio-input">Faculty Bio:</label>
|
||||
<div class="field">
|
||||
<textarea class="long tall" id="course-faculty-bio-input"></textarea>
|
||||
<textarea class="long tall edit-box tinymce" id="course-faculty-bio-input"></textarea>
|
||||
<span class="tip tip-stacked">A brief description of your education, experience, and expertise</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -554,21 +525,21 @@
|
||||
</li>
|
||||
|
||||
<li class="input multi course-faculty-list-item">
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-firstname-input">Faculty First Name:</label>
|
||||
<div class="field">
|
||||
<input type="text" class="long" id="course-faculty-firstname-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-lastname-input">Faculty Last Name:</label>
|
||||
<div class="field">
|
||||
<input type="text" class="long" id="course-faculty-lastname-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-photo-input">Faculty Photo</label>
|
||||
<div class="field">
|
||||
<div class="input">
|
||||
@@ -580,11 +551,11 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<div class="row">
|
||||
<label for="course-faculty-bio-input">Faculty Bio:</label>
|
||||
<div class="field">
|
||||
<div clas="input">
|
||||
<textarea class="long tall" id="course-faculty-bio-input"></textarea>
|
||||
<textarea class="long tall edit-box tinymce" id="course-faculty-bio-input"></textarea>
|
||||
<span class="tip tip-stacked">A brief description of your education, experience, and expertise</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -825,22 +796,22 @@
|
||||
<h4 class="label">Problem Randomization:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-general-randomization" id="problems-general-randomization-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-general-randomization" id="problems-general-randomization-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-general-randomization"></div>
|
||||
<label for="problems-general-randomization-always">Always</label>
|
||||
<span class="tip tip-stacked"><strong>randomize all</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-general-randomization" id="problems-general-randomization-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-general-randomization" id="problems-general-randomization-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-general-randomization"></div>
|
||||
<label for="problems-general-randomization-never">Never</label>
|
||||
<span class="tip tip-stacked"><strong>do not randomize</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-general-randomization" id="problems-general-randomization-perstudent" value="Per Student">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-general-randomization" id="problems-general-randomization-perstudent" value="Per Student">
|
||||
<div class="ui-status-indic ui-status-indic-problems-general-randomization"></div>
|
||||
<label for="problems-general-randomization-perstudent">Per Student</label>
|
||||
<span class="tip tip-stacked">randomize problems <strong>per student</strong></span>
|
||||
@@ -852,15 +823,15 @@
|
||||
<h4 class="label">Show Answers:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-general-showanswer" id="problems-general-showanswer-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-general-showanswer" id="problems-general-showanswer-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-general-showanswer"></div>
|
||||
<label for="problems-general-showanswer-always">Always</label>
|
||||
<span class="tip tip-stacked">Answers will be shown after the number of attempts has been met</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-general-showanswer" id="problems-general-showanswer-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-general-showanswer" id="problems-general-showanswer-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-general-showanswer"></div>
|
||||
<label for="problems-general-showanswer-never">Never</label>
|
||||
<span class="tip tip-stacked">Answers will never be shown, regardless of attempts</span>
|
||||
@@ -890,22 +861,22 @@
|
||||
<h4 class="label">Problem Randomization:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-lessonexercises-randomization" id="problems-lessonexercises-randomization-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-lessonexercises-randomization" id="problems-lessonexercises-randomization-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-lessonexercises-randomization"></div>
|
||||
<label for="problems-lessonexercises-randomization-always">Always</label>
|
||||
<span class="tip tip-stacked"><strong>randomize all</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-lessonexercises-randomization" id="problems-lessonexercises-randomization-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-lessonexercises-randomization" id="problems-lessonexercises-randomization-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-lessonexercises-randomization"></div>
|
||||
<label for="problems-lessonexercises-randomization-never">Never</label>
|
||||
<span class="tip tip-stacked"><strong>do not randomize</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-lessonexercises-randomization" id="problems-lessonexercises-randomization-perstudent" value="Per Student">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-lessonexercises-randomization" id="problems-lessonexercises-randomization-perstudent" value="Per Student">
|
||||
<div class="ui-status-indic ui-status-indic-problems-lessonexercises-randomization"></div>
|
||||
<label for="problems-lessonexercises-randomization-perstudent">Per Student</label>
|
||||
<span class="tip tip-stacked">randomize problems <strong>per student</strong></span>
|
||||
@@ -917,15 +888,15 @@
|
||||
<h4 class="label">Show Answers:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-lessonexercises-showanswer" id="problems-lessonexercises-showanswer-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-lessonexercises-showanswer" id="problems-lessonexercises-showanswer-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-lessonexercises-showanswer"></div>
|
||||
<label for="problems-lessonexercises-showanswer-always">Always</label>
|
||||
<span class="tip tip-stacked">Answers will be shown after the number of attempts has been met</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-lessonexercises-showanswer" id="problems-lessonexercises-showanswer-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-lessonexercises-showanswer" id="problems-lessonexercises-showanswer-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-lessonexercises-showanswer"></div>
|
||||
<label for="problems-lessonexercises-showanswer-never">Never</label>
|
||||
<span class="tip tip-stacked">Answers will never be shown, regardless of attempts</span>
|
||||
@@ -955,22 +926,22 @@
|
||||
<h4 class="label">Problem Randomization:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-labs-randomization" id="problems-labs-randomization-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-labs-randomization" id="problems-labs-randomization-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-labs-randomization"></div>
|
||||
<label for="problems-labs-randomization-always">Always</label>
|
||||
<span class="tip tip-stacked"><strong>randomize all</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-labs-randomization" id="problems-labs-randomization-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-labs-randomization" id="problems-labs-randomization-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-labs-randomization"></div>
|
||||
<label for="problems-labs-randomization-never">Never</label>
|
||||
<span class="tip tip-stacked"><strong>do not randomize</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-labs-randomization" id="problems-labs-randomization-perstudent" value="Per Student">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-labs-randomization" id="problems-labs-randomization-perstudent" value="Per Student">
|
||||
<div class="ui-status-indic ui-status-indic-problems-labs-randomization"></div>
|
||||
<label for="problems-labs-randomization-perstudent">Per Student</label>
|
||||
<span class="tip tip-stacked">randomize problems <strong>per student</strong></span>
|
||||
@@ -982,15 +953,15 @@
|
||||
<h4 class="label">Show Answers:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-labs-showanswer" id="problems-labs-showanswer-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-labs-showanswer" id="problems-labs-showanswer-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-labs-showanswer"></div>
|
||||
<label for="problems-labs-showanswer-always">Always</label>
|
||||
<span class="tip tip-stacked">Answers will be shown after the number of attempts has been met</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-labs-showanswer" id="problems-labs-showanswer-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-labs-showanswer" id="problems-labs-showanswer-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-labs-showanswer"></div>
|
||||
<label for="problems-labs-showanswer-never">Never</label>
|
||||
<span class="tip tip-stacked">Answers will never be shown, regardless of attempts</span>
|
||||
@@ -1020,22 +991,22 @@
|
||||
<h4 class="label">Problem Randomization:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-exams-randomization" id="problems-exams-randomization-always" value="Aways">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-exams-randomization" id="problems-exams-randomization-always" value="Aways">
|
||||
<div class="ui-status-indic ui-status-indic-problems-exams-randomization"></div>
|
||||
<label for="problems-exams-randomization-always">Always</label>
|
||||
<span class="tip tip-stacked"><strong>randomize all</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-exams-randomization" id="problems-exams-randomization-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-exams-randomization" id="problems-exams-randomization-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-exams-randomization"></div>
|
||||
<label for="problems-exams-randomization-never">Never</label>
|
||||
<span class="tip tip-stacked"><strong>do not randomize</strong> problems</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-exams-randomization" id="problems-exams-randomization-perstudent" value="Per Student">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-exams-randomization" id="problems-exams-randomization-perstudent" value="Per Student">
|
||||
<div class="ui-status-indic ui-status-indic-problems-exams-randomization"></div>
|
||||
<label for="problems-exams-randomization-perstudent">Per Student</label>
|
||||
<span class="tip tip-stacked">randomize problems <strong>per student</strong></span>
|
||||
@@ -1047,15 +1018,15 @@
|
||||
<h4 class="label">Show Answers:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="problems-exams-showanswer" id="problems-exams-showanswer-always" value="Always">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="problems-exams-showanswer" id="problems-exams-showanswer-always" value="Always">
|
||||
<div class="ui-status-indic ui-status-indic-problems-exams-showanswer"></div>
|
||||
<label for="problems-exams-showanswer-always">Always</label>
|
||||
<span class="tip tip-stacked">Answers will be shown after the number of attempts has been met</span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="problems-exams-showanswer" id="problems-exams-showanswer-never" value="Never">
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="problems-exams-showanswer" id="problems-exams-showanswer-never" value="Never">
|
||||
<div class="ui-status-indic ui-status-indic-problems-exams-showanswer"></div>
|
||||
<label for="problems-exams-showanswer-never">Never</label>
|
||||
<span class="tip tip-stacked">Answers will never be shown, regardless of attempts</span>
|
||||
@@ -1089,21 +1060,20 @@
|
||||
<h4 class="label">Anonymous Discussions:</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="discussions-anonymous" id="discussions-anonymous-allow" value="Allow">
|
||||
<div class="ui-status-indic ui-status-indic-discussions-anonymous-allow"></div>
|
||||
<div class="input ui-status-input-radio">
|
||||
<input type="radio" class="ui-status-input" name="discussions-anonymous" id="discussions-anonymous-allow" value="Allow">
|
||||
<div class="ui-status-indic ui-status-indic-discussions-anonymous-allow ss-check ss-standard"></div>
|
||||
<label for="discussions-anonymous-allow">Allow</label>
|
||||
<span class="tip tip-stacked">Students and faculty <strong>will be able to post anonymously</strong></span>
|
||||
</div>
|
||||
|
||||
<div class="input">
|
||||
<input checked="checked" type="radio" class="ui-status-input ui-status-input-radio" name="discussions-anonymous" id="discussions-anonymous-dontallow" value="Do Not Allow">
|
||||
<div class="ui-status-indic ui-status-indic-discussions-anonymous-dontallow"></div>
|
||||
<div class="input ui-status-input-radio">
|
||||
<input checked="checked" type="radio" class="ui-status-input" name="discussions-anonymous" id="discussions-anonymous-dontallow" value="Do Not Allow">
|
||||
<div class="ui-status-indic ui-status-indic-discussions-anonymous-dontallow ss-delete ss-standard"></div>
|
||||
<label for="discussions-anonymous-dontallow">Do not allow</label>
|
||||
<span class="tip tip-stacked"><strong>Posting anonymously is not allowed</strong>. Any previous anonymous posts <strong>will be reverted to non-anonymous</strong></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section><!-- .settings-discussions-general -->
|
||||
|
||||
<section class="settings-discussions-categories">
|
||||
@@ -1166,18 +1136,6 @@
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row row-col2">
|
||||
<h4 class="label">Create Discussion <br />Categories for Each <br />Course Unit</h4>
|
||||
|
||||
<div class="field ui-status">
|
||||
<div class="input">
|
||||
<input type="radio" class="ui-status-input ui-status-input-radio" name="discussions-categories-perunit" id="discussions-categories-perunit-allow" value="Create" disabled="disabled" checked="checked">
|
||||
<div class="ui-status-indic ui-status-indic-discussions-categories-perunit-allow"></div>
|
||||
<label for="discussions-categories-perunit-allow">Allow</label>
|
||||
<span class="tip tip-stacked">This option is automatically set currently</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section><!-- .settings-discussions -->
|
||||
|
||||
Reference in New Issue
Block a user