This is an automated email from the ASF dual-hosted git repository. joewitt pushed a commit to branch support/nifi-1.16 in repository https://gitbox.apache.org/repos/asf/nifi.git
commit fb299b3f8776265f10e55936c0b0f6baf58b9c0f Author: Jon Conti-Vock <[email protected]> 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 45c44a3a8f..a9c67c8ab4 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 {
