diff --git a/app/assets/css/main.css b/app/assets/css/main.css index cc0c694..360bd20 100644 --- a/app/assets/css/main.css +++ b/app/assets/css/main.css @@ -32,7 +32,7 @@ padding-top: 10px; } #project-selector button{ - max-width: 200px; + max-width: 220px; overflow: hidden; text-overflow: ellipsis; } @@ -40,8 +40,9 @@ max-height: 300px; overflow: auto; } -#project-selector .base-project a{ - font-weight: bolder; +#project-selector .subproject a{ + margin-left: 5px; + font-size: smaller; } h3.library-identification{ diff --git a/app/controllers/DependencyCheckReportsParser.scala b/app/controllers/DependencyCheckReportsParser.scala index 74b24ae..11693d1 100644 --- a/app/controllers/DependencyCheckReportsParser.scala +++ b/app/controllers/DependencyCheckReportsParser.scala @@ -97,7 +97,7 @@ final case class TeamFilter(team: Team) extends Filter{ object NoFilter extends Filter{ override def filters: Boolean = false override val descriptionHtml: Html = views.html.filters.all() - override def descriptionText: String = "all projects" + override def descriptionText: String = "no filter selected" override def subReports(r: Result): Option[Result] = Some(r) override def selector: Option[String] = None } diff --git a/app/views/filters/all.scala.html b/app/views/filters/all.scala.html index 7dae26d..819629e 100644 --- a/app/views/filters/all.scala.html +++ b/app/views/filters/all.scala.html @@ -1 +1 @@ -all \ No newline at end of file +filter by team or project \ No newline at end of file diff --git a/app/views/main.scala.html b/app/views/main.scala.html index 35c3ca1..e686f61 100644 --- a/app/views/main.scala.html +++ b/app/views/main.scala.html @@ -55,17 +55,22 @@ @for((ProjectsWithSelection(filter, projects, teams), link) <- projectsOption){