Skip to content
Snippets Groups Projects

Update renderer class: add select box

Merged Hahn Axel (hahn) requested to merge update_renderer_class into main
2 files
+ 92
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -72,4 +72,20 @@ $aReplace['{{NAVI_LEFT}}']=''
'nav', ['class'=>'mt-2'],
$renderAdminLTE->getSidebarNavigation($aSidebarNav)
);
```
\ No newline at end of file
```
### Navigation hacks
#### Sidebar
To render a horizontal line in the sidebar menu, add a navigation item with label '-'
```php
$aSidebarNav[]=['href'=>'#', 'label'=>'-'];
```
In your css file add a rule:
```css
.nav-item hr{color: #505860; border-top: 1px solid; height: 1px; padding: 0; margin: 0; }
```
Loading