From: Stas Vilchik Date: Thu, 6 Feb 2014 06:38:37 +0000 (+0600) Subject: New Issues Page: fix missing border X-Git-Tag: 4.2~240 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=aa93aefb3ceab03edfb71a5f70d088dba98da784;p=sonarqube.git New Issues Page: fix missing border --- 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;