You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/12/01 13:38:54 UTC

[brooklyn-ui] branch master updated: extra class for quick-launch row so it can be styled, and tidy rest api page styling

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new dd654e5  extra class for quick-launch row so it can be styled, and tidy rest api page styling
dd654e5 is described below

commit dd654e53b60341df4c87e58805ea97f9554055ad
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Wed Dec 1 13:37:40 2021 +0000

    extra class for quick-launch row so it can be styled, and tidy rest api page styling
---
 ui-modules/home/app/views/main/main.template.html |  2 +-
 ui-modules/rest-api-docs/app/views/main/main.less | 14 ++++++++++++--
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/ui-modules/home/app/views/main/main.template.html b/ui-modules/home/app/views/main/main.template.html
index ca7e3e5..1491ca2 100644
--- a/ui-modules/home/app/views/main/main.template.html
+++ b/ui-modules/home/app/views/main/main.template.html
@@ -17,7 +17,7 @@
   under the License.
 -->
 <div class="container">
-    <br-card>
+    <br-card class="quick-launch-group">
         <br-card-content>
             <br-card-content-headline>
                 <div class="row">
diff --git a/ui-modules/rest-api-docs/app/views/main/main.less b/ui-modules/rest-api-docs/app/views/main/main.less
index 38065ae..a1568ad 100644
--- a/ui-modules/rest-api-docs/app/views/main/main.less
+++ b/ui-modules/rest-api-docs/app/views/main/main.less
@@ -19,7 +19,9 @@
 .md-headline {
   color: @brand-primary;
 }
-
+.md-subhead {
+  color: inherit !important;
+}
 .swagger-section {
   margin-top: 5rem;
 
@@ -28,6 +30,14 @@
     padding: 0;
   }
 
+  > .info {
+    display: none; // hide the info section, it doesn't add much; but if we do show it give it some styling
+    .info_title {
+      font-size: 125%;
+      color: @brand-primary;
+    }
+  }
+
   ul {
     list-style: none;
     &#resources, &.options, &.operations, .signature-nav {
@@ -436,4 +446,4 @@
     font-weight: bold
   }
 
-}
\ No newline at end of file
+}