Thanks @runner724
Got it working now, also found background color and width for those interested.
<panel>
<html>
<style>
body,
.dashboard-body,
.footer,
.dashboard-panel,
.nav
{
background: #F8FCF7;
}
div[data-test^='time-range-dialog']
{
background-color: #EDF8EB;
min-width: 300px !important;
width: 400px !important;
}
div[data-test^='body']
{
background-color: #D1ECCC;
}
div[data-test^='real-time-column'],
<!-- div[data-test^='relative'], -->
div[data-test^='other'],
<!--div[data-test-panel-id^='preset'], -->
div[data-test-panel-id^='date'],
div[data-test-panel-id^='dateTime'],
div[data-test-panel-id^='advanced'],
div[data-test-panel-id^='realTime'],
div[data-test-panel-id^='relative']
{
display: none !important;
}
</style>
</html>
</panel>
... View more