Studio: updates Sass mixins/extend references based on textbook/Sass cleanup

This commit is contained in:
Brian Talbot
2013-07-12 16:47:58 -04:00
parent 19a7e63e40
commit 388724c485
4 changed files with 7 additions and 8 deletions

View File

@@ -877,7 +877,7 @@ body.js {
text-align: center;
.label {
@extend .text-sr;
@extend .cont-text-sr;
}
[class^="icon-"] {

View File

@@ -113,7 +113,7 @@
}
.action-primary {
@extend .ui-btn-primary-blue;
@extend .btn-primary-blue;
@extend .t-action3;
}
}

View File

@@ -188,7 +188,7 @@ body.course.textbooks {
.chapters-fields,
.textbook-fields {
@extend .no-list;
@extend .cont-no-list;
.field {
margin: 0 0 ($baseline*0.75) 0;
@@ -365,7 +365,7 @@ body.course.textbooks {
// dialog
.wrapper-dialog {
@extend .depth5;
@extend .ui-depth5;
@include transition(all 0.05s ease-in-out);
position: fixed;
top: 0;

View File

@@ -53,8 +53,8 @@
// extends - UI - window
.ui-window {
@include clearfix();
@include border-radius(3px);
@include box-shadow(0 1px 1px $shadow-l1);
border-radius: 3px;
box-shadow: 0 1px 1px $shadow-l1;
margin-bottom: $baseline;
border: 1px solid $gray-l2;
background: $white;
@@ -198,7 +198,7 @@
}
span {
@extend .text-sr;
@extend .cont-text-sr;
}
}
@@ -257,4 +257,3 @@
white-space: nowrap;
text-overflow: ellipsis;
}
>>>>>>> Studio: renames and re-orgs app-wide Sass extends