Hi, can anybody help, how to change the font size of drop-down items/selections?
Here is my dropdown:
<input type="dropdown" token="auftrag_tkn" searchWhenChanged="true" id="dropdownAuswahlAuftrag">
<label>Auftrag</label>
<fieldForLabel>Auftrag</fieldForLabel>
<fieldForValue>Auftrag</fieldForValue>
<search>
<query>xxxxx</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
</input>
Hi @spisiakmi
You can add some HTML with CSS to a panel in your dashboard like this, note this only works for classic dashboards:
<html>
<style>
.splunk-dropdown button, button span,
.splunk-dropdown span,
.splunk-dropdown label {
font-size: 1.1em !important;
}
</style>
🌟 Did this answer help you? If so, please consider:
Your feedback encourages the volunteers in this community to continue contributing
Hi @spisiakmi
You can add some HTML with CSS to a panel in your dashboard like this, note this only works for classic dashboards:
<html>
<style>
.splunk-dropdown button, button span,
.splunk-dropdown span,
.splunk-dropdown label {
font-size: 1.1em !important;
}
</style>
🌟 Did this answer help you? If so, please consider:
Your feedback encourages the volunteers in this community to continue contributing
livehybrid, wau. Absolut cool. Works fantastic. Thank you very much.