You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/08/27 11:33:47 UTC

[isis] branch master updated: ISIS-3180: badge CSS fixes:

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

ahuber 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 3e12ff5e51 ISIS-3180: badge CSS fixes:
3e12ff5e51 is described below

commit 3e12ff5e513ff6b6f282e09d9a450be9d7fd6f56
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Aug 27 13:33:41 2022 +0200

    ISIS-3180: badge CSS fixes:
    
    - don't accumulate padding when nesting
    - don't accumulate font-size reduction when nesting
---
 .../ui/pages/common/bootstrap/css/bootstrap-overrides-all-v2.css   | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/common/bootstrap/css/bootstrap-overrides-all-v2.css b/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/common/bootstrap/css/bootstrap-overrides-all-v2.css
index 4955d7e6e6..4154997c97 100644
--- a/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/common/bootstrap/css/bootstrap-overrides-all-v2.css
+++ b/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/common/bootstrap/css/bootstrap-overrides-all-v2.css
@@ -56,7 +56,12 @@ body {
 td .badge,
 .scalarPlaceholder .badge,
 .form-control-sm .badge {
-	font-size:.90em
+	font-size:.85rem
+}
+td .badge span, 
+.scalarPlaceholder .badge span, 
+.form-control-sm .badge span {
+  padding: 0;
 }