MDL-56178 theme_boost: Display drop zones labels

The markup has changed so we now need to target .sr-only rather
than just .accesshide. I did keep the latter in case it's still used
somewhere, in a custom form field for instance.

The ideal solution was to tell QuickForm to display the labels of
those elements in the group. That works for Boost, but that did not
work for Clean. The rendering mechanics of QuickForm decides to not
print the label, unless it's set as hidden... the CSS hack remains.
This commit is contained in:
Frédéric Massart 2016-10-04 14:55:33 +02:00
parent d9520bc04e
commit 5d2f105e50
4 changed files with 19 additions and 20 deletions

View File

@ -207,10 +207,23 @@
margin-right: 0.3em;
}
body.path-question-type .fitem_fgroup .accesshide {
font: inherit;
position: static;
padding-right: .3em;
body.path-question-type {
/* Hacks to display the labels within a form group. */
.fitem_fgroup .accesshide {
font: inherit;
position: static;
padding-right: .3em;
}
.form-group .sr-only {
position: static;
width: auto;
height: auto;
padding: 0;
margin: 0;
overflow: visible;
clip: auto;
border: 0;
}
}
.que {

View File

@ -102,14 +102,6 @@ form {
display: inline;
float: none;
}
.mform .ftags label.accesshide {
display: block;
position: static;
}
.mform .ftags select {
margin-bottom: 0.7em;
min-width: 22em;
}
.mform .helplink img {
margin: 0 .45em;
padding: 0;

View File

@ -177,6 +177,7 @@
margin-right: 0.3em;
}
body.path-question-type .fitem_fgroup .accesshide {
/* Hack to display the labels within a form group. */
font: inherit;
position: static;
padding-right: .3em;

View File

@ -6340,6 +6340,7 @@ table.message .searchresults td {
margin-right: 0.3em;
}
body.path-question-type .fitem_fgroup .accesshide {
/* Hack to display the labels within a form group. */
font: inherit;
position: static;
padding-right: .3em;
@ -12862,14 +12863,6 @@ form {
display: inline;
float: none;
}
.mform .ftags label.accesshide {
display: block;
position: static;
}
.mform .ftags select {
margin-bottom: 0.7em;
min-width: 22em;
}
.mform .helplink img {
margin: 0 .45em;
padding: 0;