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 ...@@ -52,7 +52,7 @@ class Icon
self::ROLE_ATTENTION => 'red', self::ROLE_ATTENTION => 'red',
self::ROLE_STATUS_RED => 'red', self::ROLE_STATUS_RED => 'red',
self::ROLE_INFO_ALT => 'white', self::ROLE_INFO_ALT => 'white',
self::ROLE_SORT => 'yellow', self::ROLE_SORT => 'blue',
self::ROLE_STATUS_YELLOW => 'yellow' self::ROLE_STATUS_YELLOW => 'yellow'
]; ];
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
@color: 'black'; @color: 'black';
} }
.role2color(@role) when (@role = 'clickable'), (@role = 'link') { .role2color(@role) when (@role = 'clickable'), (@role = 'link'), (@role = 'sort') {
@color: 'blue'; @color: 'blue';
} }
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
@color: 'white'; @color: 'white';
} }
.role2color(@role) when (@role = 'sort'), (@role = 'status-yellow') { .role2color(@role) when (@role = 'status-yellow') {
@color: 'yellow'; @color: 'yellow';
} }
......
...@@ -55,13 +55,11 @@ ...@@ -55,13 +55,11 @@
$color: 'green'; $color: 'green';
} @else if $role == inactive { } @else if $role == inactive {
$color: 'grey'; $color: 'grey';
} @else if $role == navigation {
$color: 'blue';
} @else if $role == new or $role == attention or $role == status-red { } @else if $role == new or $role == attention or $role == status-red {
$color: 'red'; $color: 'red';
} @else if $role == info_alt or $role == info-alt { } @else if $role == info_alt or $role == info-alt {
$color: 'white'; $color: 'white';
} @else if $role == sort or $role == status-yellow { } @else if $role == status-yellow {
$color: 'yellow'; $color: 'yellow';
} }
......
...@@ -50,13 +50,13 @@ ...@@ -50,13 +50,13 @@
case 'info_alt': case 'info_alt':
return 'white'; return 'white';
case 'sort':
case 'status-yellow': case 'status-yellow':
return 'yellow'; return 'yellow';
case 'lightblue': case 'lightblue':
return 'lightblue'; return 'lightblue';
case 'sort':
case 'clickable': case 'clickable':
case 'navigation': case 'navigation':
default: 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