Commit 600a0bfa by Eric Fischer

successful compilation results

parent f0cb67f5
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -247,7 +247,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or ...@@ -247,7 +247,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or
.openassessment_editor_content_and_tabs { .openassessment_editor_content_and_tabs {
width: 100%; width: 100%;
height: Calc(100% - 55px); height: calc(100% - 55px);
} }
#oa_editor_window_title{ #oa_editor_window_title{
...@@ -379,7 +379,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or ...@@ -379,7 +379,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or
} }
.oa_editor_content_wrapper { .oa_editor_content_wrapper {
height: Calc(100% - 42px); height: calc(100% - 42px);
width: 100%; width: 100%;
@include border-radius(3px); @include border-radius(3px);
border: 1px solid $edx-gray-d1; border: 1px solid $edx-gray-d1;
...@@ -426,7 +426,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or ...@@ -426,7 +426,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or
#ai_training_examples{ #ai_training_examples{
@include margin(5px, 20px, 10px, 10px); @include margin(5px, 20px, 10px, 10px);
height: 300px; height: 300px;
width: Calc(100% - 20px); width: calc(100% - 20px);
resize: none; resize: none;
font: inherit; font: inherit;
line-height: 110%; line-height: 110%;
...@@ -773,7 +773,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or ...@@ -773,7 +773,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or
label{ label{
width: 100%; width: 100%;
@include padding-left(Calc((100% - 150px)/2)); @include padding-left(calc((100% - 150px)/2));
margin: 0; margin: 0;
@include float(right); @include float(right);
...@@ -967,7 +967,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or ...@@ -967,7 +967,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or
height: 100%; height: 100%;
textarea { textarea {
min-height: 90px; min-height: 90px;
height: Calc(100% - 35px); height: calc(100% - 35px);
resize: none; resize: none;
box-sizing: border-box; box-sizing: border-box;
border: 1px solid #b2b2b2; border: 1px solid #b2b2b2;
...@@ -979,7 +979,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or ...@@ -979,7 +979,7 @@ $link-hover: $edx-blue-l1 !default; // from our Pattern Library http://ux.edx.or
font-size: 11px; font-size: 11px;
color: #4c4c4c; color: #4c4c4c;
@include margin(5px, 15px, 0, 10px); @include margin(5px, 15px, 0, 10px);
width: Calc(100% - 25px); width: calc(100% - 25px);
} }
} }
......
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