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/04/17 07:54:54 UTC

[isis] branch master updated: ISIS-3006: make form-field button-group always visible, so can tab onto

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 4fc2f773e1 ISIS-3006: make form-field button-group always visible, so can tab onto
4fc2f773e1 is described below

commit 4fc2f773e15f1dd105aec4cf73235eb265015c10
Author: andi-huber <ah...@apache.org>
AuthorDate: Sun Apr 17 09:54:49 2022 +0200

    ISIS-3006: make form-field button-group always visible, so can tab onto
---
 .../wicket/ui/pages/bootstrap-overrides-all-v2.css       | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 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 919ff9b204..3d90697838 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
@@ -1046,22 +1046,20 @@ li.select2-results__option {
     width: 85%;
 }
 
-div.scalarValueInlinePromptLink.form-control {
+.scalarValueInlinePromptLink.form-control {
     text-decoration: none;
     overflow: hidden;
 }
-div.scalarValueInlinePromptLink.form-control:hover {
+.scalarValueInlinePromptLink.form-control:hover {
 	cursor: pointer;
 	background-color: rgba(0, 0, 0, 0.08);
 }
-div.scalarValueInlinePromptLink.form-control .btn-group,
-span.scalarValueInput.input-group div.btn-group {
-    display: none;
+.scalarValueInlinePromptLink .btn-group > button.btn {
+  opacity: 0.5;
 }
-div.scalarValueInlinePromptLink.form-control:hover .btn-group,
-span.scalarValueInput.input-group:hover div.btn-group,
-textarea.form-control:focus +span >.btn-group{
-	display: inherit;
+.scalarValueInlinePromptLink .btn-group > button.btn:focus,
+.scalarValueInlinePromptLink:hover .btn-group > button.btn {
+  opacity: 1.0;
 }
 
 .entityUrlSource {