pearson registration - restyled and tweaked markup for registration closed message and styled disabled labels appropriately

This commit is contained in:
Brian Talbot
2013-01-15 14:52:39 -05:00
parent c8f52deb3d
commit a4e53d7a7f
2 changed files with 29 additions and 16 deletions

View File

@@ -294,10 +294,10 @@ $red: rgb(178, 6, 16);
}
.field {
opacity: 0.5;
opacity: 0.6;
.label {
cursor: default;
.label, label {
cursor: auto;
}
}
@@ -646,7 +646,6 @@ $red: rgb(178, 6, 16);
// registration status
&.message-flash {
display: block;
@include border-radius(3px);
position: relative;
margin: 0 0 ($baseline*2) 0;
@@ -699,7 +698,6 @@ $red: rgb(178, 6, 16);
}
}
// submission error
&.submission-error {
@include box-sizing(border-box);
@@ -766,16 +764,31 @@ $red: rgb(178, 6, 16);
color: $blue;
}
}
// specific - registration closed
&.registration-closed {
@include border-bottom-radius(0);
margin-top: 0;
border-bottom: 1px solid $light-gray;
padding: $baseline;
background: tint($light-gray,50%);
.message-title {
font-weight: bold;
}
.message-copy {
}
}
}
.is-shown {
display: block;
}
// hidden
.is-hidden {
display: none;
}
// temp
.output-raw {
display: none;
}
}