Commit ce8eb711 authored by dimitrieh's avatar dimitrieh

made avatar border color really subtle and not distracting, plus doesn't act on not links anymore

parent 03171bbf
...@@ -24,10 +24,6 @@ ...@@ -24,10 +24,6 @@
&.s110 { @include avatar-size(110px, 15px); } &.s110 { @include avatar-size(110px, 15px); }
&.s140 { @include avatar-size(140px, 15px); } &.s140 { @include avatar-size(140px, 15px); }
&.s160 { @include avatar-size(160px, 20px); } &.s160 { @include avatar-size(160px, 20px); }
&:hover {
border-color: $gl-link-color;
}
} }
.avatar { .avatar {
...@@ -56,6 +52,10 @@ ...@@ -56,6 +52,10 @@
border-radius: 0; border-radius: 0;
border: none; border: none;
} }
&:not([href]):hover {
border-color: rgba($avatar-border, .2);
}
} }
.identicon { .identicon {
......
...@@ -99,8 +99,8 @@ ...@@ -99,8 +99,8 @@
.edit-link { .edit-link {
color: $gl-gray; color: $gl-gray;
&:hover { &:not([href]):hover {
color: $md-link-color; color: rgba($avatar-border, .2);
} }
} }
} }
...@@ -279,7 +279,7 @@ ...@@ -279,7 +279,7 @@
text-decoration: none; text-decoration: none;
.avatar { .avatar {
border-color: $md-link-color; border-color: rgba($avatar-border, .2);
} }
} }
} }
......
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