Skip to content

Commit

Permalink
Fixed issue #CT-545: Don't display repeat headers on mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
twilligls committed Dec 12, 2023
1 parent 48f0c34 commit fbb508a
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 0 deletions.
Expand Up @@ -408,6 +408,11 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display : block !important
}

/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}

/* Fix for IE11 - no array question radio buttons on small screens */
Expand Down
Expand Up @@ -12029,6 +12029,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12052,6 +12052,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12029,6 +12029,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12052,6 +12052,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12029,6 +12029,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12052,6 +12052,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12029,6 +12029,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
Expand Up @@ -12052,6 +12052,10 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers td.visible-xs, table.ls-answers th.visible-xs {
display: block !important;
}
/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}
/* Fix for IE11 - no array question radio buttons on small screens */
@media all and (max-width: 760px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
Expand Down
5 changes: 5 additions & 0 deletions themes/survey/vanilla/css/noTablesOnMobile.css
Expand Up @@ -179,4 +179,9 @@ For iPads specifically : add this : (min-device-width: 768px) and (max-device-wi
table.ls-answers th.visible-xs {
display: block !important
}

/* Don't display repeating header on mobile devices'*/
table.ls-answers tr.ls-heading-repeat {
display: none;
}
}

0 comments on commit fbb508a

Please sign in to comment.