responsive update

This commit is contained in:
Roland Gruber 2019-09-02 18:05:05 +02:00
parent 967ff33b34
commit caf809c87e
3 changed files with 16 additions and 3 deletions

View File

@ -1080,12 +1080,12 @@ class accountContainer {
parseHtml(null, $titleBarDiv, array(), false, $tabindex, $this->type->getScope());
echo '<div id="lamVerticalTabs" class="ui-tabs ui-widget ui-widget-content ui-corner-bottom ui-helper-clearfix">';
echo '<table>';
echo '<table class="fullwidth">';
echo '<tr><td style="vertical-align: top;">';
// tab menu
$this->printModuleTabs();
echo '</td><td style="vertical-align: top;">';
echo "<div class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\n";
echo '</td><td style="vertical-align: top;" width="100%">';
echo "<div class=\"ui-tabs-panel ui-widget-content ui-corner-bottom fullwidth module-content-row\">\n";
// content area
// display html-code from modules
$return = call_user_func(array($this->module[$this->order[$this->current_page]], 'display_html_'.$this->subpage));

View File

@ -163,6 +163,11 @@ textarea {
margin-top: 0px;
}
.noMarginSides {
margin-right: 0px;
margin-left: 0px;
}
.padding0 {
padding: 0em !important;
}
@ -269,6 +274,10 @@ table.collapse {
text-align: center;
}
.div-center {
margin: 0 auto;
}
.bold {
font-weight: bold;
}

View File

@ -74,6 +74,10 @@ table.padding5 td {
max-width: none;
}
.module-content-row>.row {
max-width: 80rem;
}
select.auto-width {
width: auto;
}