Skip to content
Snippets Groups Projects

Update renderer class: add select box

Merged Hahn Axel (hahn) requested to merge update_renderer_class into main
3 files
+ 162
6
Compare changes
  • Side-by-side
  • Inline

Files

+ 17
1
@@ -73,3 +73,19 @@ $aReplace['{{NAVI_LEFT}}']=''
$renderAdminLTE->getSidebarNavigation($aSidebarNav)
);
```
### 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