Merge pull request #627 from silverstripe-rebelalliance/open/7637

Remove text shadow off confirmation message links trac 7637.
This commit is contained in:
Will Rossiter 2012-07-08 21:32:46 -07:00
commit b4eb023f64
2 changed files with 4 additions and 0 deletions

View File

@ -345,6 +345,7 @@ body.cms { overflow: hidden; }
.message.warning { background-color: #ffbe66; border-color: #ff9300; }
.message.error, .message.bad, .message.required { background-color: #ffbe66; border-color: #ff9300; }
.message.good { background-color: #65a839; background-color: rgba(101, 168, 57, 0.7); border-color: #65a839; color: #fff; text-shadow: 1px -1px 0 #1f9433; -webkit-border-radius: 3px 3px 3px 3px; -moz-border-radius: 3px 3px 3px 3px; -ms-border-radius: 3px 3px 3px 3px; -o-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; }
.message.good a { text-shadow: none; }
.message p { margin: 0; }
/** -------------------------------------------- Page icons -------------------------------------------- */

View File

@ -462,6 +462,9 @@ body.cms {
color:#fff;
@include text-shadow(1px -1px 0 $color-button-constructive);
@include border-radius(3px 3px 3px 3px);
a {
text-shadow:none;
}
}
p {