Skip to content

Commit

Permalink
Fixed issue : width for answertext is not resetted for small screen
Browse files Browse the repository at this point in the history
Dev: can hide (display:none) the header for sr
  • Loading branch information
Shnoulle committed Aug 9, 2016
1 parent afbe793 commit dc72e99
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions templates/default/css/template.css
Expand Up @@ -494,7 +494,7 @@ table > tbody > tr > td.ddprefix {
No more table transformation applies when screen is under 801px (for a few exotic tablet screens, see #11016),
whereas visible-xs-block respect bootstrap standards (767px)
If too many bugs of this kind appears in the future, we should just refuse to support weird exotic tablet screens.
We should repsect standards, we should not try to fit to non standards devices.
We should repsect standards, we should not try to fit to non standards devices.
*/
.visible-xs-block{
display: block !important;
Expand Down Expand Up @@ -527,16 +527,17 @@ table > tbody > tr > td.ddprefix {
display: inline-block;
width: 100%;
}

/* Reset answertext width (inline style)*/
.no-more-tables th.answertext {
width: auto !important;
}
.no-more-tables tbody {
padding: 0 1em 0 1em;
}

/* Hide table headers (but not display: none;, for accessibility) */
/* Hide table headers display: none; no need for accessibility) */
.no-more-tables thead tr {
position: absolute;
top: -9999px;
left: -9999px;
display:none;
}

.no-more-tables tr,
Expand Down

0 comments on commit dc72e99

Please sign in to comment.