You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/05/28 08:38:23 UTC

[isis] branch master updated: ISIS-2708: adds bottom margin to tab groups

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

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 30e856c  ISIS-2708: adds bottom margin to tab groups
30e856c is described below

commit 30e856c456f81c5826dd67a9779150d65fe1c59a
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri May 28 09:35:55 2021 +0100

    ISIS-2708: adds bottom margin to tab groups
---
 .../wicket/ui/pages/bootstrap-overrides-all-v2.css       | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides-all-v2.css b/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides-all-v2.css
index d5596ee..7c44728 100644
--- a/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides-all-v2.css
+++ b/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides-all-v2.css
@@ -558,19 +558,19 @@ div.additionalLinkList {
 
 /* dropdown-menu: distinguished rendering for disabled menu-items
    (assuming grey foreground text color is reasonable to apply to light as well as dark themes) */
-.dropdown-menu > .disabled > a, 
-.dropdown-menu > .disabled > a:hover, 
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
 .dropdown-menu > .disabled > a:focus {
     /*color: rgba(123, 138, 139, 0.5);*/
-    opacity: 0.5; 
+    opacity: 0.5;
     cursor: not-allowed;
 }
 
 /* menu-bar: distinguished rendering for selected menu items
    (assuming white-ish background overlay color is reasonable to apply to light as well as dark themes) */
-.navbar-nav .active > .nav-link, 
-.navbar-nav .nav-link.active, 
-.navbar-nav .nav-link.show, 
+.navbar-nav .active > .nav-link,
+.navbar-nav .nav-link.active,
+.navbar-nav .nav-link.show,
 .navbar-nav .show > .nav-link {
     background-color: rgba(255, 255, 255, 0.3);
 }
@@ -1204,3 +1204,7 @@ div.navbar-wrap,
 ul.navbar-wrap {
 	flex-wrap:wrap;
 }
+
+div.col > div.tabGroups {
+    margin-bottom: 10px;
+}