Commit 81f27122 by Brian Talbot

styling submitted visual state and submitted response UI

parent 3f1ded9a
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -27,5 +27,5 @@ $bp-dx: new-breakpoint(min-width $grid-size-x 12); // lar
// // application - colors: states
// --------------------
$color-incomplete: yellow;
$color-complete: green;
$color-focused: $black;
$color-complete: rgb(96, 188, 97);
$color-error: red;
......@@ -237,7 +237,6 @@
// step instructions
.step__instruction {
@extend %copy-delta;
margin-bottom: $spacing-bravo;
color: $copy-color;
}
......@@ -273,7 +272,7 @@
&.is--expanded {
.step__header {
margin-bottom: $spacing-charlie;
margin-bottom: $spacing-bravo;
opacity: 1.0;
@include media($bp-ds) {
......@@ -322,8 +321,13 @@
// STATE: step is complete/submitted
&.is--complete, &.is--submitted {
.step__counter:before {
border-color: $color-complete;
color: $color-complete;
}
.step__status__value {
background: $color-primary;
background: $color-complete;
.ico {
display: inline-block;
......@@ -446,10 +450,27 @@
}
}
// displayed response
// STATE: displayed response
.submission__answer__display {
border: ($baseline-v/10) solid $color-complete;
border-radius: ($baseline-v/10);
}
.submission__answer__display__title {
@extend %hd-golf;
@extend %t-weight3;
padding: $spacing-charlie $spacing-bravo;
background: $color-complete;
color: $white;
}
.submission__answer__display__content {
@extend %copy-charlie;
padding: $spacing-bravo;
}
// STATE: complete
}
......
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