SCSS variables

This commit is contained in:
Phil Hughes 2016-03-30 08:48:39 +01:00
parent 0c3cef02b3
commit ec9e0c1119
2 changed files with 11 additions and 4 deletions

View file

@ -207,3 +207,10 @@ $location-badge-bg: $gray-normal;
$location-icon-color: #e7e9ed;
$location-active-color: $gl-text-color;
$location-active-bg: $search-input-border-color;
/*
* Notes
*/
$notes-light-color: #8e8e8e;
$notes-action-color: #8f8f8f;
$notes-role-border-color: #e4e4e4;

View file

@ -176,7 +176,7 @@ ul.notes {
.note-headline-light,
.discussion-headline-light {
color: #8e8e8e;
color: $notes-light-color;
}
/**
@ -187,7 +187,7 @@ ul.notes {
.note-actions {
float: right;
margin-left: 10px;
color: #8F8F8F;
color: $notes-action-color;
}
.note-action-button,
@ -219,10 +219,10 @@ ul.notes {
display: inline-block;
padding-left: 4px;
padding-right: 4px;
color: #8F8F8F;
color: $notes-action-color;
font-size: 12px;
line-height: 20px;
border: 1px solid #E4E4E4;
border: 1px solid $notes-role-border-color;
border-radius: $border-radius-base;
}