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()); 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 '<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;">'; echo '<tr><td style="vertical-align: top;">';
// tab menu // tab menu
$this->printModuleTabs(); $this->printModuleTabs();
echo '</td><td style="vertical-align: top;">'; echo '</td><td style="vertical-align: top;" width="100%">';
echo "<div class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\n"; echo "<div class=\"ui-tabs-panel ui-widget-content ui-corner-bottom fullwidth module-content-row\">\n";
// content area // content area
// display html-code from modules // display html-code from modules
$return = call_user_func(array($this->module[$this->order[$this->current_page]], 'display_html_'.$this->subpage)); $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; margin-top: 0px;
} }
.noMarginSides {
margin-right: 0px;
margin-left: 0px;
}
.padding0 { .padding0 {
padding: 0em !important; padding: 0em !important;
} }
@ -269,6 +274,10 @@ table.collapse {
text-align: center; text-align: center;
} }
.div-center {
margin: 0 auto;
}
.bold { .bold {
font-weight: bold; font-weight: bold;
} }

View File

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