1
0
Fork 0
forked from 0x2620/oxjs

add OxSpecialLink CSS

This commit is contained in:
rolux 2013-02-22 09:06:07 +05:30
commit 139b65dd45
6 changed files with 32 additions and 0 deletions

View file

@ -22,6 +22,18 @@ body.$themeClass:-webkit-full-screen {
background-image: -webkit-linear-gradient(top, $bodyHighlightGradient);
color: $bodyHighlightColor;
}
.$themeClass .OxSpecialLink {
background-image: -moz-linear-gradient(top, $bodySpecialLinkGradient);
background-image: -o-linear-gradient(top, $bodySpecialLinkGradient);
background-image: -webkit-linear-gradient(top, $bodySpecialLinkGradient);
color: $bodySpecialLinkColor;
}
.$themeClass .OxSpecialLink.OxActive {
background-image: -moz-linear-gradient(top, $bodySpecialLinkActiveGradient);
background-image: -o-linear-gradient(top, $bodySpecialLinkActiveGradient);
background-image: -webkit-linear-gradient(top, $bodySpecialLinkActiveGradient);
color: $bodySpecialLinkActiveColor;
}
.$themeClass .OxBright {
color: $bodyBrightColor;
}