You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mt...@apache.org on 2022/03/29 18:19:02 UTC

[nifi] branch main updated: NIFI-9787: Increasing visibility of selected slickgrid row with 1px b… (#5857)

This is an automated email from the ASF dual-hosted git repository.

mtien pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 14e4f1b  NIFI-9787: Increasing visibility of selected slickgrid row with 1px b… (#5857)
14e4f1b is described below

commit 14e4f1bfc27251059c5ac8ed381ef63b5e6ac0f1
Author: Jon Conti-Vock <10...@users.noreply.github.com>
AuthorDate: Tue Mar 29 14:18:53 2022 -0400

    NIFI-9787: Increasing visibility of selected slickgrid row with 1px b… (#5857)
    
    * NIFI-9787: Increasing visibility of selected slickgrid row with 1px borders on the top and bottom plus a slightly darker yellow background-color value.
    
    * NIFI-9787: Added missing units to the padding values.
    
    Merged #5857 into main.
---
 .../nifi-web/nifi-web-ui/src/main/webapp/css/slick-nifi-theme.css  | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/slick-nifi-theme.css b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/slick-nifi-theme.css
index 45c44a3..a9c67c8 100755
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/slick-nifi-theme.css
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/css/slick-nifi-theme.css
@@ -50,7 +50,10 @@
 }
 
 .slick-cell.selected {
-    background-color: #fffbe6;
+    background-color: #ffef85;
+    border-top: 1px solid #000000;
+    border-bottom: 1px solid #000000;
+    padding-top: 0px;
 }
 
 .slick-row.odd {
@@ -126,7 +129,7 @@
     border-top: 0;
     border-left: 1px solid #c7d2d7;
     border-bottom: 1px solid #c7d2d7;
-    padding: 0 2px 6px 10px;
+    padding: 1px 2px 5px 10px;
 }
 
 div.status-text {