Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
GTNPORTAL-3064 Change on warning message color to be 508 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasponce authored and bdaw committed May 28, 2013
1 parent 8c990a4 commit 3cdbf8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Expand Up @@ -141,7 +141,8 @@
}

.UILoginForm .LoginDetailBox .ForgetPass a {
color: orange;
/* ORIGINAL color: orange; */
color: #1273df; /* For Section 508 compliant */
}

.UILoginForm .LoginDetailBox .UIFormGrid td {
Expand Down
Expand Up @@ -34,14 +34,16 @@
}

.UIPopupMessages .WarningMessage .MessageContainer {
color: orange;
/* ORIGINAL color: orange; */
color: #1273df; /* For Section 508 compliant */
padding: 4px 0px 4px 10px; /* orientation=lt */
padding: 4px 10px 4px 0px; /* orientation=rt */
border-bottom: 1px dotted #c3c3c3;
}

.UIPopupMessages .ErrorMessage .MessageContainer {
color: red;
/* ORIGINAL color: red; */
color: #cc0000; /* For Section 508 compliant */
padding: 4px 0px 4px 10px; /* orientation=lt */
padding: 4px 10px 4px 0px; /* orientation=rt */
border-bottom: 1px dotted #c3c3c3;
Expand Down

0 comments on commit 3cdbf8d

Please sign in to comment.