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 2018/02/12 11:59:53 UTC

[isis] branch maint-1.16.1 updated (58d1600 -> d1ecefd)

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

danhaywood pushed a change to branch maint-1.16.1
in repository https://gitbox.apache.org/repos/asf/isis.git.


 discard 58d1600  ISIS-1813: fixes CSS for action drop-down alignment
     new d1ecefd  ISIS-1813: fixes CSS for action drop-down alignment

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (58d1600)
            \
             N -- N -- N   refs/heads/maint-1.16.1 (d1ecefd)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/applib/src/main/java/org/apache/isis/applib/annotation/Action.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
danhaywood@apache.org.

[isis] 01/01: ISIS-1813: fixes CSS for action drop-down alignment

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d1ecefd93d2987c1e59d0b1b9ef7940b183c21ec
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Mon Feb 12 11:44:33 2018 +0000

    ISIS-1813: fixes CSS for action drop-down alignment
---
 .../src/main/java/org/apache/isis/applib/annotation/Action.java       | 2 +-
 .../org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides.css    | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/core/applib/src/main/java/org/apache/isis/applib/annotation/Action.java b/core/applib/src/main/java/org/apache/isis/applib/annotation/Action.java
index 044ff96..d1178eb 100644
--- a/core/applib/src/main/java/org/apache/isis/applib/annotation/Action.java
+++ b/core/applib/src/main/java/org/apache/isis/applib/annotation/Action.java
@@ -247,7 +247,7 @@ public @interface Action {
      *     For example <code>@Action(associateWith="items", associateWithSequence="2.1")</code>
      * </p>
      */
-    String associateWithSequence();
+    String associateWithSequence() default "1";
 
 
 }
\ No newline at end of file
diff --git a/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides.css b/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides.css
index ea47d0a..cbc4fac 100644
--- a/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides.css
+++ b/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/bootstrap-overrides.css
@@ -581,6 +581,10 @@ div.label-left.actions-right .scalarValueWrapper {
     /*width: 3%;*/
 }
 
+.pull-right .additionalLinkListDropDown li.additionalLinkItem a.btn {
+    text-align: inherit;
+}
+
 
 div.label-top .scalarValueWrapper,
 div.label-none .scalarValueWrapper {

-- 
To stop receiving notification emails like this one, please contact
danhaywood@apache.org.