You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2022/02/08 12:21:36 UTC

[myfaces-tobago] 01/02: fix(theme): header width of tc:sheet

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

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

commit ff66b4f454c63ff60e11910a1973312ecf50be53
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Tue Feb 8 13:19:16 2022 +0100

    fix(theme): header width of tc:sheet
    
    The header of a sheet must have the same width as the sheet itself.
    
    Issue: TOBAGO-2108
---
 tobago-theme/src/main/scss/_tobago.scss | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tobago-theme/src/main/scss/_tobago.scss b/tobago-theme/src/main/scss/_tobago.scss
index 94bb66e..457e511 100644
--- a/tobago-theme/src/main/scss/_tobago.scss
+++ b/tobago-theme/src/main/scss/_tobago.scss
@@ -1252,6 +1252,9 @@ tobago-sheet {
   }
 
   header {
+    overflow-x: hidden;
+    flex-shrink: 0; //if "column" attribute used: header must remain same height (fix overflow hidden)
+
     table {
       margin-bottom: 0;