Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
1 . You can add the following CSS rule to your Dashboard's index.php to set fixed width for menu icons so that menu text are aligned:
<style>
a.sidebar-link i {
width: 1rem !important; // change this to a width you want
}
</style>
2 . Pls inspect the chart text (e.g label text) you want to change color to see their DOM selector and add the followng CSS rule to your board:
class MyBoard extends \koolreport\dashboard\Dashboard
{
protected function widgets()
{
return [
Html::style("
#{chart name/id} svg {DOM selector} text {
fill: white;
}
"),
...
If you omit the DOM selector, all text in your chart will be white.
@GHSix: Thank you very much for letting us know this issue, we have sent this topic to dev.team for bug fixes and improvement for AppStack theme.
Added to first point of Sebastian, you may created your own css file and use css
property of Application to register your css to dashboard.
Here is the link of Application properties
Thank you very much.
The menu one that was hard on eyes for me is fixed.
App.php
protected function onCreated()
{
$this->css('assets/css/dash.css');
}
dash.css
a.sidebar-link i {
width: 1rem !important;
text-align: center;
}
The other two, dropdown-item and chart text, are AppStack Theme css that is changed dynamically, so I hope it make into next version soom.
Thank you.
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo