Commit f2012e1d by Tom Giannattasio

additional processing class

parent 185ab1f6
...@@ -49,6 +49,8 @@ padding-left: flex-gutter(9); ...@@ -49,6 +49,8 @@ padding-left: flex-gutter(9);
} }
} }
div { div {
p.status { p.status {
text-indent: -9999px; text-indent: -9999px;
...@@ -64,30 +66,26 @@ div { ...@@ -64,30 +66,26 @@ div {
} }
} }
&.correct, &.ui-icon-check { &.processing {
p.status { p.status {
@include inline-block(); @include inline-block();
background: url('../images/correct-icon.png') center center no-repeat; background: url('../images/spinner.gif') center center no-repeat;
height: 20px; height: 20px;
width: 25px; width: 20px;
} text-indent: -9999px;
input {
border-color: green;
} }
} }
&.processing { &.correct, &.ui-icon-check {
p.status { p.status {
@include inline-block(); @include inline-block();
background: url('../images/spinner.gif') center center no-repeat; background: url('../images/correct-icon.png') center center no-repeat;
height: 20px; height: 20px;
width: 20px; width: 25px;
text-indent: -9999px;
} }
input { input {
border-color: #aaa; border-color: green;
} }
} }
...@@ -148,6 +146,15 @@ div { ...@@ -148,6 +146,15 @@ div {
width: 14px; width: 14px;
} }
&.processing, &.ui-icon-check {
@include inline-block();
background: url('../images/spinner.gif') center center no-repeat;
height: 20px;
position: relative;
top: 6px;
width: 25px;
}
&.correct, &.ui-icon-check { &.correct, &.ui-icon-check {
@include inline-block(); @include inline-block();
background: url('../images/correct-icon.png') center center no-repeat; background: url('../images/correct-icon.png') center center no-repeat;
......
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