Commit 12fb495a by gradyward

Merge pull request #520 from edx/grady/styles

Polishing Style Changes, and Resize Responsiveness
parents c2751736 6f3bb708
...@@ -63,7 +63,7 @@ DEFAULT_RUBRIC_CRITERIA = [ ...@@ -63,7 +63,7 @@ DEFAULT_RUBRIC_CRITERIA = [
# The rubric's feedback prompt is a set of instructions letting the student # The rubric's feedback prompt is a set of instructions letting the student
# know they can provide additional free form feedback in their assessment. # know they can provide additional free form feedback in their assessment.
DEFAULT_RUBRIC_FEEDBACK_PROMPT = """ DEFAULT_RUBRIC_FEEDBACK_PROMPT = """
(Optional) What aspects of this response stood out to you? What did it do well? How could it improve? (Optional) What aspects of this response stood out to you? What did it do well? How could it improve?
""" """
DEFAULT_EXAMPLE_ANSWER = """ DEFAULT_EXAMPLE_ANSWER = """
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -187,12 +187,6 @@ ...@@ -187,12 +187,6 @@
height: Calc(100% - 97px); height: Calc(100% - 97px);
} }
#openassessment_editor_header{
background-color: #e5e5e5;
width: 100%;
top: 0;
}
#oa_editor_window_title{ #oa_editor_window_title{
float: left; float: left;
} }
...@@ -203,17 +197,40 @@ ...@@ -203,17 +197,40 @@
background-image: linear-gradient(#F2F2F2,#FFF); background-image: linear-gradient(#F2F2F2,#FFF);
} }
.oa_editor_tab{ #openassessment_editor_header {
float: right; background-color: #e5e5e5;
padding: ($baseline-v/8) ($baseline-h/8); width: 100%;
margin: ($baseline-v/8) ($baseline-h/8); top: 0;
border-radius: ($baseline-v/4); height: 42px;
box-shadow: none;
border: 0; .editor_tabs {
width: 35%;
min-width: 190px;
max-width: 360px;
float: right;
.oa_editor_tab {
float: right;
padding: 0;
width: 29%;
margin: 0px 2%;
height: 35px;
border-radius: 5px;
box-shadow: none;
border: 0;
text-align: center;
a {
padding: 8px 0 0 0;
width: 100%;
}
}
}
} }
.oa_editor_content_wrapper { .oa_editor_content_wrapper {
height: Calc(100% - 1px); height: 100%;
width: 100%; width: 100%;
border-radius: 3px; border-radius: 3px;
border: 1px solid $edx-gray-d1; border: 1px solid $edx-gray-d1;
...@@ -408,7 +425,6 @@ ...@@ -408,7 +425,6 @@
} }
.openassessment_criterion { .openassessment_criterion {
padding-bottom: 10px;
.openassessment_criterion_remove_button{ .openassessment_criterion_remove_button{
@extend .openassessment_rubric_remove_button; @extend .openassessment_rubric_remove_button;
...@@ -458,8 +474,8 @@ ...@@ -458,8 +474,8 @@
border: 1px solid; border: 1px solid;
color: #009fe6; color: #009fe6;
background-color: white; background-color: white;
padding: 5px; padding: 7.5px;
margin: 10px; margin: 10px 10px 10px 20px;
border-radius: 3px; border-radius: 3px;
cursor: pointer; cursor: pointer;
} }
...@@ -540,7 +556,7 @@ ...@@ -540,7 +556,7 @@
} }
.openassessment_criterion_option{ .openassessment_criterion_option{
padding: 7.5px; padding: 5px 5px 5px 15px;
.openassessment_criterion_option_remove_button{ .openassessment_criterion_option_remove_button{
@extend .openassessment_rubric_remove_button; @extend .openassessment_rubric_remove_button;
...@@ -572,13 +588,14 @@ ...@@ -572,13 +588,14 @@
margin: 0; margin: 0;
.wrapper-comp-setting{ .wrapper-comp-setting{
min-width: 200px; min-width: 150px;
} }
label{ label{
width: auto; width: auto;
padding-left: 15%; padding-left: Calc((100% - 150px)/2);
margin: 0; margin: 0;
float: right;
input{ input{
min-width: 50px; min-width: 50px;
...@@ -588,8 +605,6 @@ ...@@ -588,8 +605,6 @@
font-size: 11px; font-size: 11px;
} }
} }
} }
.openassessment_criterion_option_name_wrapper{ .openassessment_criterion_option_name_wrapper{
...@@ -717,13 +732,13 @@ ...@@ -717,13 +732,13 @@
} }
background-color: white; background-color: white;
border-top: 1px solid; border: 1px solid;
border-bottom: 1px solid; border-radius: 4px;
text-align: center; text-align: center;
color: #009fe6; color: #009fe6;
padding: 10px; padding: 10px;
margin: 10px, 0; margin: 15px 10px;
} }
#openassessment_rubric_add_criterion:hover{ #openassessment_rubric_add_criterion:hover{
...@@ -749,6 +764,7 @@ ...@@ -749,6 +764,7 @@
.modal-lg.modal-window.confirm.openassessment_modal_window{ .modal-lg.modal-window.confirm.openassessment_modal_window{
height: 80%; height: 80%;
top: 10%; top: 10%;
min-width: 600px;
} }
.openassessment_full_height.edit-xblock-modal, .openassessment_full_height.edit-xblock-modal,
......
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