From aa93aefb3ceab03edfb71a5f70d088dba98da784 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Thu, 6 Feb 2014 12:38:37 +0600 Subject: [PATCH] New Issues Page: fix missing border --- sonar-server/src/main/webapp/stylesheets/navigator.css | 6 ++++++ .../src/main/webapp/stylesheets/navigator/base.css | 6 ++++++ .../src/main/webapp/stylesheets/navigator/base.less | 8 ++++++++ 3 files changed, 20 insertions(+) diff --git a/sonar-server/src/main/webapp/stylesheets/navigator.css b/sonar-server/src/main/webapp/stylesheets/navigator.css index 6f5fe51ae76..d59efd8d7fd 100644 --- a/sonar-server/src/main/webapp/stylesheets/navigator.css +++ b/sonar-server/src/main/webapp/stylesheets/navigator.css @@ -183,6 +183,12 @@ .navigator-results-list > li:first-child.active { border-top-color: #4B9FD5; } +.navigator-results-list > li:last-child { + border-bottom: 1px solid transparent; +} +.navigator-results-list > li:last-child.active { + border-bottom-color: #4B9FD5; +} .navigator-results-list > li .line { padding: 5px 10px; line-height: 1.2; diff --git a/sonar-server/src/main/webapp/stylesheets/navigator/base.css b/sonar-server/src/main/webapp/stylesheets/navigator/base.css index 83790e07657..9ea3bea4aa5 100644 --- a/sonar-server/src/main/webapp/stylesheets/navigator/base.css +++ b/sonar-server/src/main/webapp/stylesheets/navigator/base.css @@ -183,6 +183,12 @@ .navigator-results-list > li:first-child.active { border-top-color: #4B9FD5; } +.navigator-results-list > li:last-child { + border-bottom: 1px solid transparent; +} +.navigator-results-list > li:last-child.active { + border-bottom-color: #4B9FD5; +} .navigator-results-list > li .line { padding: 5px 10px; line-height: 1.2; diff --git a/sonar-server/src/main/webapp/stylesheets/navigator/base.less b/sonar-server/src/main/webapp/stylesheets/navigator/base.less index 7d1f3b49fb2..9d4e9a3ce88 100644 --- a/sonar-server/src/main/webapp/stylesheets/navigator/base.less +++ b/sonar-server/src/main/webapp/stylesheets/navigator/base.less @@ -210,6 +210,14 @@ } } + &:last-child { + border-bottom: 1px solid transparent; + + &.active { + border-bottom-color: #4B9FD5; + } + } + .line { padding: @navigatorPadding / 2 @navigatorPadding; line-height: 1.2; -- 2.39.5