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 2020/01/31 18:25:37 UTC

[isis-antora] branch master updated: adds float left etc for sidebars

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-antora.git


The following commit(s) were added to refs/heads/master by this push:
     new adac38c  adds float left etc for sidebars
adac38c is described below

commit adac38c84af51a6274190d2496f3dd68c1658420
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Jan 31 18:25:20 2020 +0000

    adds float left etc for sidebars
---
 README.adoc                   |   2 +-
 build/ui-bundle.zip           | Bin 314939 -> 314982 bytes
 preview-src/about.adoc        |   7 +++----
 src/css/extensions/tweaks.css |  27 ++++++++++++++++++++++++++-
 4 files changed, 30 insertions(+), 6 deletions(-)

diff --git a/README.adoc b/README.adoc
index 8d8bfb0..8c87599 100644
--- a/README.adoc
+++ b/README.adoc
@@ -20,7 +20,7 @@
 
 image:{img-ci-status}[CI Status (GitLab CI), link={url-ci-pipelines}]
 
-This project is an archetype that demonstrates how to produce a UI bundle that can be used by {url-antora}[Antora] to generated a documentation site.
+This project demonstrates how to produce a UI bundle that can be used by {url-antora}[Antora] to generated a documentation site.
 You can see a preview of the default UI at {url-preview}.
 
 While the default UI is ready to be used with Antora, the intent is that you'll fork it and customize it for your own needs.
diff --git a/build/ui-bundle.zip b/build/ui-bundle.zip
index 024ac56..e60aed3 100644
Binary files a/build/ui-bundle.zip and b/build/ui-bundle.zip differ
diff --git a/preview-src/about.adoc b/preview-src/about.adoc
index fd29a5d..a908e54 100644
--- a/preview-src/about.adoc
+++ b/preview-src/about.adoc
@@ -13,16 +13,15 @@
 
 * *xref:what-is-apache-isis/isis-in-pictures.adoc[Apache Isis in pictures]*
 * xref:what-is-apache-isis/common-use-cases.adoc[Common Use Cases]
-
 * xref:what-is-apache-isis/screencasts.adoc[Screencasts]
-* xref:what-is-apache-isis/powered-by.adoc[Powered By]
+// * xref:what-is-apache-isis/powered-by.adoc[Powered By]
 
 |
 [discrete]
 == Starter Apps
 
-* link:https://github.com/apache/isis-app-helloworld[Hello World]
-* link:https://github.com/apache/isis-app-simpleapp[SimpleApp]
+* xref:starters:helloworld:about.adoc[HelloWorld]
+* xref:starters:simpleapp:about.adoc[SimpleApp]
 
 |
 [discrete]
diff --git a/src/css/extensions/tweaks.css b/src/css/extensions/tweaks.css
index bfb57e4..8403100 100644
--- a/src/css/extensions/tweaks.css
+++ b/src/css/extensions/tweaks.css
@@ -7,5 +7,30 @@
 .doc .imageblock img {
   border: thin solid #3c76bd;
   padding: 10px;
-  margin: 10px;
+}
+
+.float-left-50,
+.float-left {
+  width: 50px;
+  float: left;
+  margin-right: 20px;
+}
+
+.float-left-30 {
+  width: 30px;
+  float: left;
+  margin-right: 20px;
+}
+
+.float-right-50,
+.float-right {
+  width: 50px;
+  float: right;
+  margin-left: 20px;
+}
+
+.float-right-30 {
+  width: 30px;
+  float: right;
+  margin-left: 20px;
 }