Commit ab87ff6b by Brian Talbot

settings - field alignment, radio/checkbox formatting

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