Commit 530312ab by clrux

Merge pull request #9676 from edx/clrux/hotfix-lms-dashboard-link-hover

Updating reset link colors
parents 1c910cfb 16ae0df3
......@@ -84,7 +84,7 @@ p {
@include transition(all 0.1s linear 0s);
&:hover, &:focus {
color: $link-color;
color: $link-hover;
text-decoration: underline;
}
}
......@@ -96,7 +96,9 @@ a, a:visited {
text-decoration: none;
@include transition(all 0.1s linear 0s);
&:hover, &:focus {
&:hover,
&:focus {
color: $link-hover;
text-decoration: underline;
}
......
......@@ -9,9 +9,9 @@ html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 10
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
body { margin: 0; font-size: 1em; line-height: 1.4; }
a { color: #00e; }
a:visited { color: #551a8b; }
a:hover, a:focus { color: #06e; }
a { color: #005584; } // from the Pattern Library http://ux.edx.org/elements/colors/
a:visited { color: #003655; } // from the Pattern Library http://ux.edx.org/elements/colors/
a:hover, a:focus { color: #0079BC; } // from the Pattern Library http://ux.edx.org/elements/colors/
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
......
......@@ -463,7 +463,7 @@ $border-color-l4: $m-gray-l4;
// MISC: links and buttons
$link-color: $blue;
$link-color-d1: $blue;
$link-hover: $pink;
$link-hover: $blue-l1; // from our Pattern Library http://ux.edx.org/elements/colors/
$site-status-color: $pink;
$button-color: $blue;
$button-archive-color: rgb(238,238,238); // #eeeeee
......
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