<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Why is the dropdown input width not increasing? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416348#M27386</link>
    <description>&lt;P&gt;Here is extension to @vnravikumar 's answer for changing width for all Splunk inputs (example increases the width from 200px to 300px.)&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6907i20D88E678B439D12/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following are the CSS Selectors. &lt;CODE&gt;PS: each input needs to have corresponding ids added manually in SimpleXML.&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      #resized_dd div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"],
      #resized_ms div[data-component="splunk-core:/splunkjs/mvc/components/MultiDropdown"],
      #resized_tb div[data-component="splunk-core:/splunkjs/mvc/components/TextInput"],
      #resized_tp div[data-component="splunk-core:/splunkjs/mvc/components/TimeRangePickerDropdown"],
      #resized_rg div[data-component="splunk-core:/splunkjs/mvc/components/RadioGroup"],
      #resized_cg div[data-component="splunk-core:/splunkjs/mvc/components/CheckboxGroup"],
      #resized_ll div[data-component="splunk-core:/splunkjs/mvc/components/LinkList"]{
         width: 300px !important;
         margin-right: auto !important;
      }
      .fieldset .input{
         width:auto !important;
      }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Where the inputs with IDs manually added would look like the following in SimpleXML. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;input id="resized_rg" type="radio" token="tokRadio" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_cg" type="checkbox" token="tokCheckbox" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_dd" type="dropdown" token="tokDropdown" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_ms" type="multiselect" token="tokMultiSelect" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_tb" type="text" token="tokTextBox" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_tp" type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_ll" type="link" token="tokLink" searchWhenChanged="false"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Following is the complete Simple XML code for run anywhere example screenshot attached:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Splunk Input Width Adjustment&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;&amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input id="resized_cg" type="checkbox" token="tokCheckbox" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Checkbox&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
        &amp;lt;delimiter&amp;gt; &amp;lt;/delimiter&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_rg" type="radio" token="tokRadio" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Radio&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_dd" type="dropdown" token="tokDropdown" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Dropdown&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_ms" type="multiselect" token="tokMultiSelect" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Multiselect&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
        &amp;lt;default&amp;gt;a,b&amp;lt;/default&amp;gt;
        &amp;lt;delimiter&amp;gt; &amp;lt;/delimiter&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_ll" type="link" token="tokLink" searchWhenChanged="false"&amp;gt;
        &amp;lt;label&amp;gt;Link&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_tb" type="text" token="tokTextBox" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Textbox&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_tp" type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Time&amp;lt;/label&amp;gt;
        &amp;lt;default&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #resized_dd div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"],
          #resized_ms div[data-component="splunk-core:/splunkjs/mvc/components/MultiDropdown"],
          #resized_tb div[data-component="splunk-core:/splunkjs/mvc/components/TextInput"],
          #resized_tp div[data-component="splunk-core:/splunkjs/mvc/components/TimeRangePickerDropdown"],
          #resized_rg div[data-component="splunk-core:/splunkjs/mvc/components/RadioGroup"],
          #resized_cg div[data-component="splunk-core:/splunkjs/mvc/components/CheckboxGroup"],
          #resized_ll div[data-component="splunk-core:/splunkjs/mvc/components/LinkList"]{
             width: 300px !important;
             margin-right: auto !important;
          }
          &amp;lt;!-- Generic CSS to Apply changes for all Inputs.
          div[data-component^="splunk-core:/splunkjs/mvc/components/"]{
             width: 300px !important;
             margin-right: auto !important;
          }
          .fieldset .input{
             width:auto !important;
          }
          --&amp;gt;
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: There is a bonus commented CSS in the Simple XML above which overrides the width of all Splunk Inputs in the dashboard (the same is listed out below):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          div[data-component^="splunk-core:/splunkjs/mvc/components/"]{
             width: 300px !important;
             margin-right: auto !important;
          }
          .fieldset .input{
             width:auto !important;
          }
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 13 Nov 2019 18:40:26 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2019-11-13T18:40:26Z</dc:date>
    <item>
      <title>Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416340#M27378</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;

&lt;P&gt;I am trying to use one of the other Splunk answers to increase the width of my dropdown menu. The width is kinda working - it pushes all the adjacent inputs further away from it but doesnt actually allow for longer text to be displayed in itself. &lt;/P&gt;

&lt;P&gt;Here is the code I am using to trying:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      #dropdown_resize_input {
        width: 300px !important;
      }

      #dropdown_resize_input .select2-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
      }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any thoughts or other ways to increase the width of the dropdown in 7.2.1 ?&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:42:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416340#M27378</guid>
      <dc:creator>mwdbhyat</dc:creator>
      <dc:date>2019-04-15T15:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416341#M27379</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try this, here &lt;CODE&gt;resized_input&lt;/CODE&gt; is dropdown id&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row depends="$hide$"&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;html&amp;gt;
         &amp;lt;style&amp;gt;
           #resized_input  div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"]{
             width: 500px !important;
           }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;
     &amp;lt;/panel&amp;gt;
   &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:49:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416341#M27379</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T15:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416342#M27380</link>
      <description>&lt;P&gt;Hi @vnravikumar - thanks I tried that from one of your other splunk answers but both methods give me similar results - it just creates a space the size of the pixel width between the dropdown input and the input next to it - doesnt actually extend the text field. &lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:57:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416342#M27380</guid>
      <dc:creator>mwdbhyat</dc:creator>
      <dc:date>2019-04-15T15:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416343#M27381</link>
      <description>&lt;P&gt;..and actually sometimes it just goes over the adjacent input&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:59:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416343#M27381</guid>
      <dc:creator>mwdbhyat</dc:creator>
      <dc:date>2019-04-15T15:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416344#M27382</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;check this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;width&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="field1" id="resized_input"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;One&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="2"&amp;gt;Two&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="text" token="field2"&amp;gt;
      &amp;lt;label&amp;gt;Textbox&amp;lt;/label&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" token="field3"&amp;gt;
      &amp;lt;label&amp;gt;Multiselect&amp;lt;/label&amp;gt;
      &amp;lt;delimiter&amp;gt; &amp;lt;/delimiter&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="field4"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown2&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;Test&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row depends="$hide$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
          &amp;lt;style&amp;gt;
            #resized_input  div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"]{
              width: 300px !important;
              margin-right: auto !important;
            }

         .fieldset .input{
          width:auto !important;
          }
          &amp;lt;/style&amp;gt;
        &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2019 16:16:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416344#M27382</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T16:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416345#M27383</link>
      <description>&lt;P&gt;Legend! Thanks !&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 17:57:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416345#M27383</guid>
      <dc:creator>mwdbhyat</dc:creator>
      <dc:date>2019-04-15T17:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416346#M27384</link>
      <description>&lt;P&gt;This does not work for me on v7.3.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 15:33:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416346#M27384</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-13T15:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416347#M27385</link>
      <description>&lt;P&gt;@woodcock the step where id needs to be input is required i.e. for the CSS &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;         #resized_input  div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"]{
           width: 300px !important;
           margin-right: auto !important;
         }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to work the dropdown input should have id &lt;CODE&gt;resized_input&lt;/CODE&gt; added manually:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;input type="dropdown" token="field1" id="resized_input"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Nov 2019 17:14:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416347#M27385</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-11-13T17:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416348#M27386</link>
      <description>&lt;P&gt;Here is extension to @vnravikumar 's answer for changing width for all Splunk inputs (example increases the width from 200px to 300px.)&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6907i20D88E678B439D12/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following are the CSS Selectors. &lt;CODE&gt;PS: each input needs to have corresponding ids added manually in SimpleXML.&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      #resized_dd div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"],
      #resized_ms div[data-component="splunk-core:/splunkjs/mvc/components/MultiDropdown"],
      #resized_tb div[data-component="splunk-core:/splunkjs/mvc/components/TextInput"],
      #resized_tp div[data-component="splunk-core:/splunkjs/mvc/components/TimeRangePickerDropdown"],
      #resized_rg div[data-component="splunk-core:/splunkjs/mvc/components/RadioGroup"],
      #resized_cg div[data-component="splunk-core:/splunkjs/mvc/components/CheckboxGroup"],
      #resized_ll div[data-component="splunk-core:/splunkjs/mvc/components/LinkList"]{
         width: 300px !important;
         margin-right: auto !important;
      }
      .fieldset .input{
         width:auto !important;
      }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Where the inputs with IDs manually added would look like the following in SimpleXML. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;input id="resized_rg" type="radio" token="tokRadio" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_cg" type="checkbox" token="tokCheckbox" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_dd" type="dropdown" token="tokDropdown" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_ms" type="multiselect" token="tokMultiSelect" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_tb" type="text" token="tokTextBox" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_tp" type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
   &amp;lt;input id="resized_ll" type="link" token="tokLink" searchWhenChanged="false"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Following is the complete Simple XML code for run anywhere example screenshot attached:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Splunk Input Width Adjustment&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;&amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input id="resized_cg" type="checkbox" token="tokCheckbox" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Checkbox&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
        &amp;lt;delimiter&amp;gt; &amp;lt;/delimiter&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_rg" type="radio" token="tokRadio" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Radio&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_dd" type="dropdown" token="tokDropdown" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Dropdown&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_ms" type="multiselect" token="tokMultiSelect" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Multiselect&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
        &amp;lt;default&amp;gt;a,b&amp;lt;/default&amp;gt;
        &amp;lt;delimiter&amp;gt; &amp;lt;/delimiter&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_ll" type="link" token="tokLink" searchWhenChanged="false"&amp;gt;
        &amp;lt;label&amp;gt;Link&amp;lt;/label&amp;gt;
        &amp;lt;choice value="a"&amp;gt;Apple&amp;lt;/choice&amp;gt;
        &amp;lt;choice value="b"&amp;gt;Banana&amp;lt;/choice&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_tb" type="text" token="tokTextBox" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Textbox&amp;lt;/label&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;input id="resized_tp" type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Time&amp;lt;/label&amp;gt;
        &amp;lt;default&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #resized_dd div[data-component="splunk-core:/splunkjs/mvc/components/Dropdown"],
          #resized_ms div[data-component="splunk-core:/splunkjs/mvc/components/MultiDropdown"],
          #resized_tb div[data-component="splunk-core:/splunkjs/mvc/components/TextInput"],
          #resized_tp div[data-component="splunk-core:/splunkjs/mvc/components/TimeRangePickerDropdown"],
          #resized_rg div[data-component="splunk-core:/splunkjs/mvc/components/RadioGroup"],
          #resized_cg div[data-component="splunk-core:/splunkjs/mvc/components/CheckboxGroup"],
          #resized_ll div[data-component="splunk-core:/splunkjs/mvc/components/LinkList"]{
             width: 300px !important;
             margin-right: auto !important;
          }
          &amp;lt;!-- Generic CSS to Apply changes for all Inputs.
          div[data-component^="splunk-core:/splunkjs/mvc/components/"]{
             width: 300px !important;
             margin-right: auto !important;
          }
          .fieldset .input{
             width:auto !important;
          }
          --&amp;gt;
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: There is a bonus commented CSS in the Simple XML above which overrides the width of all Splunk Inputs in the dashboard (the same is listed out below):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          div[data-component^="splunk-core:/splunkjs/mvc/components/"]{
             width: 300px !important;
             margin-right: auto !important;
          }
          .fieldset .input{
             width:auto !important;
          }
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Nov 2019 18:40:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416348#M27386</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-11-13T18:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416349#M27387</link>
      <description>&lt;P&gt;Gregg, I need the same on 7.3.3 too! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 14:48:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416349#M27387</guid>
      <dc:creator>tomasmoser</dc:creator>
      <dc:date>2020-02-11T14:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the dropdown input width not increasing?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416350#M27388</link>
      <description>&lt;P&gt;@niketnilay - It works to resize the checkboxes but it's no to horizontal alignment. &lt;BR /&gt;
I used display: inline-block !important;&lt;BR /&gt;
Splunk v7.1&lt;BR /&gt;
Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 19:41:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-the-dropdown-input-width-not-increasing/m-p/416350#M27388</guid>
      <dc:creator>isaquetelus</dc:creator>
      <dc:date>2020-05-11T19:41:01Z</dc:date>
    </item>
  </channel>
</rss>

