diff options
author | Lauri Ojansivu <x@xet7.org> | 2020-04-28 03:51:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 03:51:18 +0300 |
commit | 63f501c57407cea825e6828271f35f1dd63c7153 (patch) | |
tree | 516da06f1b450281ea5955c7d9e7843b5e66fb52 | |
parent | 6aa0aa50dcf7a56efc5199e30f256738cecb59c5 (diff) | |
parent | 9b9e3c9e0c2533495bfa2eba13d8580be5e48624 (diff) | |
download | wekan-63f501c57407cea825e6828271f35f1dd63c7153.tar.gz wekan-63f501c57407cea825e6828271f35f1dd63c7153.tar.bz2 wekan-63f501c57407cea825e6828271f35f1dd63c7153.zip |
Merge pull request #3056 from marc1006/header_height_fix
Fix list header height when cards count is shown
-rw-r--r-- | client/components/lists/list.styl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/components/lists/list.styl b/client/components/lists/list.styl index 27cf678c..bc7f763f 100644 --- a/client/components/lists/list.styl +++ b/client/components/lists/list.styl @@ -43,9 +43,6 @@ background: white margin: -3px 0 8px -.list-header-card-count - height: 35px - .list-header-add flex: 0 0 auto padding: 20px 12px 4px @@ -60,6 +57,9 @@ background-color: #e4e4e4; border-bottom: 6px solid #e4e4e4; + &.list-header-card-count + min-height: 35px + height: auto &.ui-sortable-handle cursor: grab |