Commit 18474986 by David Baumgold

Removed deprecated mixins from _textbooks.scss

parent 3a11ab26
...@@ -129,7 +129,7 @@ body.course.textbooks { ...@@ -129,7 +129,7 @@ body.course.textbooks {
.edit-textbook { .edit-textbook {
@include box-sizing(border-box); @include box-sizing(border-box);
@include border-radius(2px); border-radius: 2px;
width: 100%; width: 100%;
background: $white; background: $white;
...@@ -143,7 +143,7 @@ body.course.textbooks { ...@@ -143,7 +143,7 @@ body.course.textbooks {
} }
.actions { .actions {
@include box-shadow(inset 0 1px 2px $shadow); box-shadow: inset 0 1px 2px $shadow;
border-top: 1px solid $gray-l1; border-top: 1px solid $gray-l1;
padding: ($baseline*0.75) $baseline; padding: ($baseline*0.75) $baseline;
background: $gray-l6; background: $gray-l6;
...@@ -383,9 +383,9 @@ body.course.textbooks { ...@@ -383,9 +383,9 @@ body.course.textbooks {
} }
.dialog { .dialog {
@include box-shadow(0px 0px 7px $shadow-d1);
@include box-sizing(border-box); @include box-sizing(border-box);
@include border-radius(($baseline/5)); box-shadow: 0px 0px 7px $shadow-d1;
border-radius: ($baseline/5);
background-color: $gray-l4; background-color: $gray-l4;
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
...@@ -413,7 +413,7 @@ body.course.textbooks { ...@@ -413,7 +413,7 @@ body.course.textbooks {
padding: 0; padding: 0;
.form-content { .form-content {
@include box-shadow(0 0 3px $shadow-d1); box-shadow: 0 0 3px $shadow-d1;
padding: ($baseline*1.5); padding: ($baseline*1.5);
background-color: $white; background-color: $white;
} }
...@@ -427,7 +427,7 @@ body.course.textbooks { ...@@ -427,7 +427,7 @@ body.course.textbooks {
margin-top: $baseline; margin-top: $baseline;
.wrapper-progress { .wrapper-progress {
@include box-shadow(inset 0 0 3px $shadow-d1); box-shadow: inset 0 0 3px $shadow-d1;
display: block; display: block;
border-radius: ($baseline*0.75); border-radius: ($baseline*0.75);
background-color: $gray-l5; background-color: $gray-l5;
......
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