[Rt-commit] rt branch, 4.4/keyboard-old-themes, created. rt-4.4.1-344-g8641712

Shawn Moore shawn at bestpractical.com
Thu May 18 16:44:53 EDT 2017


The branch, 4.4/keyboard-old-themes has been created
        at  8641712e90547fe67624aac9b983440a46917787 (commit)

- Log -----------------------------------------------------------------
commit 8641712e90547fe67624aac9b983440a46917787
Author: Shawn M Moore <shawn at bestpractical.com>
Date:   Thu May 18 20:40:18 2017 +0000

    Fix keyboard shortcut UI for selecting tickets on old themes
    
    Due to how ticket search tables had borders in old themes, the CSS rule
    for showing the selected row needs to be scoped to td:first-child.
    
    Fixes: I#32748

diff --git a/share/static/css/aileron/ticket-lists.css b/share/static/css/aileron/ticket-lists.css
index a62ab4d..3261ee1 100644
--- a/share/static/css/aileron/ticket-lists.css
+++ b/share/static/css/aileron/ticket-lists.css
@@ -193,3 +193,7 @@ padding-bottom: 1em;
 .chart-meta .saved-search {
     display: inline-block;
 }
+
+.ticket-list .selected-row tr td:first-child {
+    border-left: 3px solid #3858a3;
+}
diff --git a/share/static/css/ballard/ticket-lists.css b/share/static/css/ballard/ticket-lists.css
index be83108..3511f8e 100644
--- a/share/static/css/ballard/ticket-lists.css
+++ b/share/static/css/ballard/ticket-lists.css
@@ -189,3 +189,7 @@ padding-bottom: 1em;
 .chart-meta .saved-search {
     display: inline-block;
 }
+
+.ticket-list .selected-row tr td:first-child {
+    border-left: 3px solid #3858a3;
+}
diff --git a/share/static/css/web2/ticket-lists.css b/share/static/css/web2/ticket-lists.css
index be83108..afd98ce 100644
--- a/share/static/css/web2/ticket-lists.css
+++ b/share/static/css/web2/ticket-lists.css
@@ -189,3 +189,8 @@ padding-bottom: 1em;
 .chart-meta .saved-search {
     display: inline-block;
 }
+
+.ticket-list .selected-row tr td:first-child {
+    border-left: 3px solid #3858a3;
+}
+

-----------------------------------------------------------------------


More information about the rt-commit mailing list