diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc
index 01088254..141260f5 100644
--- a/lam/lib/lists.inc
+++ b/lam/lib/lists.inc
@@ -1171,20 +1171,18 @@ class lamList {
* Prints the list configuration page.
*/
protected function listPrintConfigurationPage() {
- echo "
\n";
+ echo "
\n";
}
@@ -1364,7 +1362,7 @@ abstract class lamListOption {
/**
* Returns the meta HTML data to display this option.
*
- * @return htmlTable meta HTML
+ * @return htmlResponsiveRow meta HTML
*/
public abstract function getMetaHTML();
@@ -1417,13 +1415,12 @@ class lamBooleanListOption extends lamListOption {
}
/**
- * Returns the meta HTML data to display this option.
- *
- * @return htmlTable meta HTML
+ * {@inheritDoc}
+ * @see lamListOption::getMetaHTML()
*/
public function getMetaHTML() {
- $return = new htmlTable();
- $return->addElement(new htmlTableExtendedInputCheckbox($this->getID(), $this->isSelected(), $this->name));
+ $return = new htmlResponsiveRow();
+ $return->add(new htmlResponsiveInputCheckbox($this->getID(), $this->isSelected(), $this->name), 12);
return $return;
}
@@ -1482,13 +1479,12 @@ class lamSelectListOption extends lamListOption {
}
/**
- * Returns the meta HTML data to display this option.
- *
- * @return htmlTable meta HTML
+ * {@inheritDoc}
+ * @see lamListOption::getMetaHTML()
*/
public function getMetaHTML() {
- $return = new htmlTable();
- $return->addElement(new htmlTableExtendedSelect($this->getID(), $this->options, array($this->getValue()), $this->name, $this->helpID));
+ $return = new htmlResponsiveRow();
+ $return->add(new htmlResponsiveSelect($this->getID(), $this->options, array($this->getValue()), $this->name, $this->helpID), 12);
return $return;
}
diff --git a/lam/style/responsive/120_lam.css b/lam/style/responsive/120_lam.css
index 64f8a49c..cac4b3f8 100644
--- a/lam/style/responsive/120_lam.css
+++ b/lam/style/responsive/120_lam.css
@@ -61,6 +61,11 @@ div.lam-dialog-msg {
margin: 10px;
}
+div.dialog-content {
+ overflow: visible !important;
+ margin: 2rem;
+}
+
table.padding5 td {
padding: 0.5rem;
}