Commit e5c0bdf7 by Brian Talbot

studio - added in manual policy editor CodeMirror styles and removed unused…

studio - added in manual policy editor CodeMirror styles and removed unused classes on CodeMirror instance in other settings tabs
parent 75ceed7f
...@@ -551,15 +551,25 @@ ...@@ -551,15 +551,25 @@
.settings-advanced { .settings-advanced {
//.CodeMirror { // specific to code mirror instance in JSON policy editing, need to sync up with other similar code mirror UIs
// border: 1px solid #eee; .CodeMirror {
// height: auto; padding: 6px 8px 8px;
//} @include box-sizing(border-box);
//.CodeMirror-scroll { border: 1px solid $mediumGrey;
// overflow-y: hidden; border-radius: 2px;
// overflow-x: auto; @include linear-gradient($lightGrey, tint($lightGrey, 90%));
//} background-color: $lightGrey;
@include box-shadow(0 1px 2px rgba(0, 0, 0, .1) inset);
font-family: 'Open Sans', sans-serif;
color: $baseFontColor;
outline: 0;
.CodeMirror-scroll {
height: auto;
min-height: 50px;
max-height: 200px;
}
}
// messages - should be synced up with global messages in the future // messages - should be synced up with global messages in the future
.message { .message {
......
...@@ -225,7 +225,7 @@ from contentstore import utils ...@@ -225,7 +225,7 @@ from contentstore import utils
<label for="course-overview">Course Overview:</label> <label for="course-overview">Course Overview:</label>
<div class="field"> <div class="field">
<div class="input"> <div class="input">
<textarea class="long tall tinymce text-editor" id="course-overview"></textarea> <textarea class="long tall text-editor" id="course-overview"></textarea>
<span class="tip tip-stacked">Introductions, prerequisites, FAQs that are used on <a href="${utils.get_lms_link_for_about_page(context_course.location)}">your course summary page</a></span> <span class="tip tip-stacked">Introductions, prerequisites, FAQs that are used on <a href="${utils.get_lms_link_for_about_page(context_course.location)}">your course summary page</a></span>
</div> </div>
</div> </div>
...@@ -311,7 +311,7 @@ from contentstore import utils ...@@ -311,7 +311,7 @@ from contentstore import utils
<div class="row"> <div class="row">
<label for="course-faculty-1-bio">Faculty Bio:</label> <label for="course-faculty-1-bio">Faculty Bio:</label>
<div class="field"> <div class="field">
<textarea class="long tall edit-box tinymce" id="course-faculty-1-bio"></textarea> <textarea class="long tall edit-box" id="course-faculty-1-bio"></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>
...@@ -350,7 +350,7 @@ from contentstore import utils ...@@ -350,7 +350,7 @@ from contentstore import utils
<label for="course-faculty-2-bio">Faculty Bio:</label> <label for="course-faculty-2-bio">Faculty Bio:</label>
<div class="field"> <div class="field">
<div clas="input"> <div clas="input">
<textarea class="long tall edit-box tinymce" id="course-faculty-2-bio"></textarea> <textarea class="long tall edit-box" id="course-faculty-2-bio"></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>
......
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