From 3d93443b019c2ac90b7119163829712e7c5b103c Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Thu, 12 Apr 2018 11:02:41 +0200 Subject: [PATCH 1/2] Table: fix that actions in inactive rows are shown correctly fixes #1941 --- app/assets/stylesheets/zammad.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/zammad.scss b/app/assets/stylesheets/zammad.scss index 3fc62e7d1..605d92319 100644 --- a/app/assets/stylesheets/zammad.scss +++ b/app/assets/stylesheets/zammad.scss @@ -1051,11 +1051,11 @@ th.align-right { } .table tr.is-inactive { - opacity: 0.5; + color: #bbb; text-decoration: line-through; a { - color: #bbb; + color: inherit; } } From 88e53e18da040d2a5d0b7b4a38b8cc4d0c3517cc Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Thu, 12 Apr 2018 11:02:59 +0200 Subject: [PATCH 2/2] Action Dropdown: make sure that the action-icon is white --- app/assets/stylesheets/zammad.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/zammad.scss b/app/assets/stylesheets/zammad.scss index 605d92319..a4ff22618 100644 --- a/app/assets/stylesheets/zammad.scss +++ b/app/assets/stylesheets/zammad.scss @@ -6621,6 +6621,10 @@ footer { flex: 1; padding: 0 18px; } + + .icon { + fill: currentColor; + } } .dropdown.dropdown--wide {