Use $link-color for text and $brand-primary for backgrounds/buttons
closes #7318
This commit is contained in:
parent
dba8de5488
commit
dc8d66520b
6 changed files with 9 additions and 8 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
# 0.6.4.0
|
# 0.6.4.0
|
||||||
|
|
||||||
## Refactor
|
## Refactor
|
||||||
|
* Unify link colors [#7318](https://github.com/diaspora/diaspora/pull/7318)
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
* Fix path to `bundle` in `script/server` [#7281](https://github.com/diaspora/diaspora/pull/7281)
|
* Fix path to `bundle` in `script/server` [#7281](https://github.com/diaspora/diaspora/pull/7281)
|
||||||
|
|
|
||||||
|
|
@ -676,7 +676,7 @@ $list-group-border: transparent;
|
||||||
$list-group-border-radius: 0;
|
$list-group-border-radius: 0;
|
||||||
|
|
||||||
//** Background color of single list items on hover
|
//** Background color of single list items on hover
|
||||||
$list-group-hover-bg: $link-color;
|
$list-group-hover-bg: $brand-primary;
|
||||||
//** Text color of active list items
|
//** Text color of active list items
|
||||||
$list-group-active-color: $white;
|
$list-group-active-color: $white;
|
||||||
//** Background color of active list items
|
//** Background color of active list items
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover, &.unread:hover, &.selected:hover {
|
&:hover, &.unread:hover, &.selected:hover {
|
||||||
background-color: lighten($link-color, 5%);
|
background-color: lighten($brand-primary, 5%);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
.participants {
|
.participants {
|
||||||
border-color: rgba($border-grey, 1);
|
border-color: rgba($border-grey, 1);
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.unread { background-color: $background-grey; }
|
&.unread { background-color: $background-grey; }
|
||||||
&.selected { background-color: $link-color; }
|
&.selected { background-color: $brand-primary; }
|
||||||
|
|
||||||
.last_author, .last_message {
|
.last_author, .last_message {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
color: $gray-light;
|
color: $gray-light;
|
||||||
padding-left: 55px;
|
padding-left: 55px;
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: $link-color;
|
background-color: $brand-primary;
|
||||||
color: $gray-lighter;
|
color: $gray-lighter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.view_all {
|
.view_all {
|
||||||
background-color: $link-color;
|
background-color: $brand-primary;
|
||||||
border-top: 3px solid $dropdown-bg;
|
border-top: 3px solid $dropdown-bg;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
a {
|
a {
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@
|
||||||
> li {
|
> li {
|
||||||
> a { padding: 7px 15px; }
|
> a { padding: 7px 15px; }
|
||||||
|
|
||||||
&:not(.active) * { color: $brand-primary; }
|
&:not(.active) * { color: $link-color; }
|
||||||
|
|
||||||
&.active * { color: $black; }
|
&.active * { color: $black; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover, &:hover a, &:hover [class^="entypo"] {
|
&:hover, &:hover a, &:hover [class^="entypo"] {
|
||||||
background-color: $link-color;
|
background-color: $brand-primary;
|
||||||
border-color: $link-color;
|
border-color: $brand-primary;
|
||||||
color: $white;
|
color: $white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue