Skip to content

Commit

Permalink
SVY-11689: Responsive form defaulted to height: 100%.
Browse files Browse the repository at this point in the history
  • Loading branch information
paronne committed Nov 16, 2017
1 parent ed88c09 commit 7c5010a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
5 changes: 5 additions & 0 deletions tablesspanel/tablesspanel.css
Expand Up @@ -3,4 +3,9 @@
height: 100%;
width: 100%;
min-height: 0 !important;
}

/* Default form's height to 100% if responsive form is contained within an anchored form */
.svy-wrapper > * > .bts-tablesspanel > svy-formload > .svy-respform {
height: 100%;
}
16 changes: 15 additions & 1 deletion tabpanel/tabpanel.css
Expand Up @@ -28,4 +28,18 @@

.svy-wrapper > * > .bts-tabpanel > .tab-content > .tab-pane > div {
height: 100%;
}
}


/* Default form's height to 100% if responsive form is contained within an anchored form */
.svy-wrapper > * > .bts-tabpanel > .tab-content > .tab-pane > div > svy-formload > .svy-respform {
height: 100%;
}

/*
* TODO min-height can be greater than 100% height of the panel
* should min-height be overruled to 0 if the responsive form is included in an anchored form ?
*/
.svy-wrapper > * > .bts-tabpanel > .tab-content > .tab-pane > div {
/* min-height: 0 !important; */
}

0 comments on commit 7c5010a

Please sign in to comment.