Skip to content
Snippets Groups Projects
Commit 1667aaab authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

change color of sort to blue, fixes #920

Closes #920
parent 7fca46ed
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ class Icon
self::ROLE_ATTENTION => 'red',
self::ROLE_STATUS_RED => 'red',
self::ROLE_INFO_ALT => 'white',
self::ROLE_SORT => 'yellow',
self::ROLE_SORT => 'blue',
self::ROLE_STATUS_YELLOW => 'yellow'
];
......
......@@ -63,7 +63,7 @@
@color: 'black';
}
.role2color(@role) when (@role = 'clickable'), (@role = 'link') {
.role2color(@role) when (@role = 'clickable'), (@role = 'link'), (@role = 'sort') {
@color: 'blue';
}
......@@ -87,7 +87,7 @@
@color: 'white';
}
.role2color(@role) when (@role = 'sort'), (@role = 'status-yellow') {
.role2color(@role) when (@role = 'status-yellow') {
@color: 'yellow';
}
......
......@@ -55,13 +55,11 @@
$color: 'green';
} @else if $role == inactive {
$color: 'grey';
} @else if $role == navigation {
$color: 'blue';
} @else if $role == new or $role == attention or $role == status-red {
$color: 'red';
} @else if $role == info_alt or $role == info-alt {
$color: 'white';
} @else if $role == sort or $role == status-yellow {
} @else if $role == status-yellow {
$color: 'yellow';
}
......
......@@ -50,13 +50,13 @@
case 'info_alt':
return 'white';
case 'sort':
case 'status-yellow':
return 'yellow';
case 'lightblue':
return 'lightblue';
case 'sort':
case 'clickable':
case 'navigation':
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment