You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2018/03/01 15:07:58 UTC

[myfaces-tobago] branch master updated: overflow: auto for box and panel

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new f30786e  overflow: auto for box and panel
f30786e is described below

commit f30786eb5b8e4197939165025474f807131d6ba7
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Thu Mar 1 16:08:03 2018 +0100

    overflow: auto for box and panel
    
    TOBAGO-1867: Content of <tc:box> and <tc:panel> should have "overflow: auto"
---
 tobago-core/src/main/resources/scss/_tobago.scss | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tobago-core/src/main/resources/scss/_tobago.scss b/tobago-core/src/main/resources/scss/_tobago.scss
index fa4d480..a56da99 100644
--- a/tobago-core/src/main/resources/scss/_tobago.scss
+++ b/tobago-core/src/main/resources/scss/_tobago.scss
@@ -122,6 +122,9 @@ Todo: check, if this is needed? (It doesn't work with the build system)
 
 .tobago-box {
   margin-bottom: $card-spacer-y;
+  > .card-body {
+    overflow: auto;
+  }
 }
 
 .tobago-box-header {
@@ -668,6 +671,12 @@ span.tobago-out:empty:before {
   height: 100%;
 }
 
+/* panel ------------------------------------------------------------- */
+
+.tobago-panel {
+  overflow: auto;
+}
+
 /* popup ------------------------------------------------------------- */
 
 .tobago-popup {

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