|
@@ -16,23 +16,25 @@
|
|
|
* limitations under the License.
|
|
|
}}
|
|
|
|
|
|
-<table class="config-section" border="1">
|
|
|
- {{#each row in tab.sectionRows}}
|
|
|
- <tr>
|
|
|
- {{#each section in row}}
|
|
|
- <td {{bindAttr colspan="section.columnSpan" rowspan="section.rowSpan"}}>
|
|
|
- {{section.displayName}}
|
|
|
- <table class="config-sub-section" border="1">
|
|
|
- {{#each subRow in section.subsectionRows}}
|
|
|
- <tr>
|
|
|
- {{#each subsection in subRow}}
|
|
|
- <td>{{subsection.name}}</td>
|
|
|
- {{/each}}
|
|
|
- </tr>
|
|
|
- {{/each}}
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- {{/each}}
|
|
|
- </tr>
|
|
|
- {{/each}}
|
|
|
-</table>
|
|
|
+<div class="section-layout-container">
|
|
|
+ <table class="config-section-table">
|
|
|
+ {{#each row in tab.sectionRows}}
|
|
|
+ <tr>
|
|
|
+ {{#each section in row}}
|
|
|
+ <td class="config-section" {{bindAttr colspan="section.columnSpan" rowspan="section.rowSpan"}}>
|
|
|
+ {{section.displayName}}
|
|
|
+ <table class="config-subsection-table">
|
|
|
+ {{#each subRow in section.subsectionRows}}
|
|
|
+ <tr>
|
|
|
+ {{#each subsection in subRow}}
|
|
|
+ <td class="config-subsection">{{subsection.name}}</td>
|
|
|
+ {{/each}}
|
|
|
+ </tr>
|
|
|
+ {{/each}}
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ {{/each}}
|
|
|
+ </tr>
|
|
|
+ {{/each}}
|
|
|
+ </table>
|
|
|
+</div>
|