<?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: How to use CSS to increase the width of a drop-down input? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232801#M14423</link>
    <description>&lt;P&gt;They might have changed something that makes my old solution fail.&lt;/P&gt;

&lt;P&gt;Try this instead. Comes from something I posted here: &lt;A href="https://gist.github.com/thibodux/408a685dc1a46af5f4f73f7c2922e47e"&gt;https://gist.github.com/thibodux/408a685dc1a46af5f4f73f7c2922e47e&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;style&amp;gt;
  .input-dropdown &amp;gt; .splunk-dropdown &amp;gt; div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  #resized_input {
    width: 500% !important;
  }
&amp;lt;/style&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can also look at the Layer8Insight App for Splunk. I used to maintain that and change CSS widths all over it.&lt;/P&gt;</description>
    <pubDate>Fri, 02 Nov 2018 11:02:32 GMT</pubDate>
    <dc:creator>rjthibod</dc:creator>
    <dc:date>2018-11-02T11:02:32Z</dc:date>
    <item>
      <title>How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232798#M14420</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a lot of text in a drop-down - too much to display in the default window size. To make the box wider, I tried the CSS solution described here;&lt;BR /&gt;&lt;A href="https://answers.splunk.com/answers/295879/how-can-i-extend-the-width-of-my-drop-down-box-in.html" target="_blank"&gt;https://answers.splunk.com/answers/295879/how-can-i-extend-the-width-of-my-drop-down-box-in.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;But instead of making the input box wider, it shifted the rest of the row further to the right giving 500px of space. This is the CSS I have applied:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;#resized_input {
  width: 500px;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And this is where I reference the id:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;input type="dropdown" token="tps_logger_method" searchWhenChanged="true" id="resized_input"&amp;gt;
     &amp;lt;label&amp;gt;Select a logger name&amp;lt;/label&amp;gt;
     &amp;lt;search&amp;gt;
       &amp;lt;query&amp;gt;eventtype=mlc2 sourcetype=tps host=$host_token$ | table name | dedup name | sort name&amp;lt;/query&amp;gt;
       &amp;lt;earliest&amp;gt;$time_token.earliest$&amp;lt;/earliest&amp;gt;
       &amp;lt;latest&amp;gt;$time_token.latest$&amp;lt;/latest&amp;gt;
     &amp;lt;/search&amp;gt;
     &amp;lt;fieldForLabel&amp;gt;name&amp;lt;/fieldForLabel&amp;gt;
     &amp;lt;fieldForValue&amp;gt;name&amp;lt;/fieldForValue&amp;gt;
     &amp;lt;default&amp;gt;murex.limits.engine.stream.histo.TPSHistoCounter&amp;lt;/default&amp;gt;
   &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can anyone see what I'm doing wrong?&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2020 23:58:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232798#M14420</guid>
      <dc:creator>johnraftery</dc:creator>
      <dc:date>2020-06-07T23:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232799#M14421</link>
      <description>&lt;P&gt;You are only extending the top-level wrapper of the dropdown, not the actual dropdown item menu. Try this instead.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#resized_input {
  min-width: 500px !important;
  width: 500px !important;
  max-width: 500px !important;
}
#resized_input .splunk-dropdown .select2-container {
  min-width: 500px !important;
  width: 500px !important;
  max-width: 500px !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Jul 2017 18:17:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232799#M14421</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2017-07-18T18:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232800#M14422</link>
      <description>&lt;P&gt;Did this work for increasing the drop down width? I added a drop down with id as "resized_input" but noticed extra space after dropdown, but it did not increase drop down width.&lt;/P&gt;

&lt;P&gt;Added the above style to prebuilt panel &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;style&amp;gt;
     #resized_input {
      min-width: 500px !important;
      width: 500px !important;
      max-width: 500px !important;
    }
    #resized_input .splunk-dropdown .select2-container {
      min-width: 500px !important;
      width: 500px !important;
      max-width: 500px !important;
    }
  &amp;lt;/style&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Nov 2018 00:59:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232800#M14422</guid>
      <dc:creator>gjanardh</dc:creator>
      <dc:date>2018-11-02T00:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232801#M14423</link>
      <description>&lt;P&gt;They might have changed something that makes my old solution fail.&lt;/P&gt;

&lt;P&gt;Try this instead. Comes from something I posted here: &lt;A href="https://gist.github.com/thibodux/408a685dc1a46af5f4f73f7c2922e47e"&gt;https://gist.github.com/thibodux/408a685dc1a46af5f4f73f7c2922e47e&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;style&amp;gt;
  .input-dropdown &amp;gt; .splunk-dropdown &amp;gt; div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  #resized_input {
    width: 500% !important;
  }
&amp;lt;/style&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can also look at the Layer8Insight App for Splunk. I used to maintain that and change CSS widths all over it.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 11:02:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232801#M14423</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2018-11-02T11:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232802#M14424</link>
      <description>&lt;P&gt;Thanks for your response rjthibod. Still I see space after the dropdown, but the actual drop down is not extended. We are on version 7.1.2.&lt;/P&gt;

&lt;P&gt;My pre built panel is now like. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;style&amp;gt;         
    .input-dropdown &amp;gt; .splunk-dropdown &amp;gt; div {
      width: 400px !important;
      max-width: 400px !important;
      min-width: 400px !important;
    }
  #resize_input {
    width: 400px !important;
  }
  &amp;lt;/style&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Nov 2018 14:05:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232802#M14424</guid>
      <dc:creator>gjanardh</dc:creator>
      <dc:date>2018-11-02T14:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232803#M14425</link>
      <description>&lt;P&gt;Can you post the XML for the dropdown input? It looks like the ids might be different &lt;CODE&gt;resize_input&lt;/CODE&gt; versus &lt;CODE&gt;resized_input&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 14:22:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232803#M14425</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2018-11-02T14:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232804#M14426</link>
      <description>&lt;P&gt;Here is the extract from my Simple XML&lt;/P&gt;

&lt;P&gt;form&lt;BR /&gt;
......&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input id="resize_input" type="dropdown" token="dName" searchWhenChanged="true"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;.....  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;html&amp;gt;
  &amp;lt;style&amp;gt;         
    .input-dropdown &amp;gt; .splunk-dropdown &amp;gt; div {
      width: 400px !important;
      max-width: 400px !important;
      min-width: 400px !important;
    }
    #resize_input {
      width: 400px !important;
    }
&amp;lt;/style&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;/form&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 14:32:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232804#M14426</guid>
      <dc:creator>gjanardh</dc:creator>
      <dc:date>2018-11-02T14:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232805#M14427</link>
      <description>&lt;P&gt;So, of course, Splunk changed thins. The CSS you want is something like this (top line changed)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#resize_input &amp;gt; .splunk-dropdown &amp;gt; div:nth-child(1) {
  width: 400px !important;
  max-width: 400px !important;
  min-width: 400px !important;
}
#resize_input {
  width: 400px !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Unfortunately, it appears you can't use this inline in the XML as you are currently trying. You will have to put the settings in a CSS file in the app and load that CSS file into the panel.&lt;BR /&gt;&lt;BR /&gt;
See &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.2.0/AdvancedDev/UseCSS"&gt;https://docs.splunk.com/Documentation/Splunk/7.2.0/AdvancedDev/UseCSS&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 21:46:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232805#M14427</guid>
      <dc:creator>rjthibod</dc:creator>
      <dc:date>2018-11-02T21:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232806#M14428</link>
      <description>&lt;P&gt;Thank you. Will try with css, instead of using in simple xml.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 22:55:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232806#M14428</guid>
      <dc:creator>gjanardh</dc:creator>
      <dc:date>2018-11-02T22:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232807#M14429</link>
      <description>&lt;P&gt;Hi, unfortunately this will not work for me in 7.2.1. Is there another possiblity to increase the width for a dropdown input?&lt;BR /&gt;
Other input types can be changed with placing css style directly in the xml Dashboard or using seperate dashboard.css file.&lt;BR /&gt;
I tried both for the &lt;STRONG&gt;dropdown type&lt;/STRONG&gt; without success. Any ideas?&lt;/P&gt;

&lt;P&gt;XML dashboard:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;dropdown_test&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input id="resize_input" type="dropdown" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;field1&amp;lt;/label&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;droplist&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;droplist&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;| makeresults count=5
| eval droplist=random()&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
&amp;lt;/form&amp;gt;

dashboard.css:

 #resize_input &amp;gt; .splunk-dropdown &amp;gt; div:nth-child(1) {
   width: 400px !important;
   max-width: 400px !important;
   min-width: 400px !important;
 }
 #resize_input {
   width: 400px !important;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;thanks&lt;BR /&gt;
Stefan&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 13:21:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232807#M14429</guid>
      <dc:creator>ssteinmann</dc:creator>
      <dc:date>2019-03-20T13:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232808#M14430</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;dropdownsize&amp;lt;/label&amp;gt;
  &amp;lt;fieldset&amp;gt;
    &amp;lt;input type="dropdown" token="tps_logger_method" searchWhenChanged="true" id="resized_input"&amp;gt;
      &amp;lt;label&amp;gt;Select a logger name&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;murex.limits.engine.stream.histo.TPSHistoCounter&amp;lt;/default&amp;gt;
      &amp;lt;choice value="murex.limits.engine.stream.histo.TPSHistoCounter"&amp;gt;murex.limits.engine.stream.histo.TPSHistoCounter&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: 500px !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>Wed, 20 Mar 2019 16:44:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232808#M14430</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-03-20T16:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232809#M14431</link>
      <description>&lt;P&gt;Thank you, this is perfectly working for me! &lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 08:25:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232809#M14431</guid>
      <dc:creator>ssteinmann</dc:creator>
      <dc:date>2019-03-21T08:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232810#M14432</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;
This work in Splunk versions 7 and 8&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;input type="dropdown" token="tps_logger_method" searchWhenChanged="true" id="resized_input"&amp;gt;
    &amp;lt;label&amp;gt;Select a logger name&amp;lt;/label&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;query&amp;gt;eventtype=mlc2 sourcetype=tps host=$host_token$ | table name | dedup name | sort name&amp;lt;/query&amp;gt;
      &amp;lt;earliest&amp;gt;$time_token.earliest$&amp;lt;/earliest&amp;gt;
      &amp;lt;latest&amp;gt;$time_token.latest$&amp;lt;/latest&amp;gt;
    &amp;lt;/search&amp;gt;
    &amp;lt;fieldForLabel&amp;gt;name&amp;lt;/fieldForLabel&amp;gt;
    &amp;lt;fieldForValue&amp;gt;name&amp;lt;/fieldForValue&amp;gt;
    &amp;lt;default&amp;gt;murex.limits.engine.stream.histo.TPSHistoCounter&amp;lt;/default&amp;gt;
  &amp;lt;/input&amp;gt;
  &amp;lt;row depends="noshow"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
       &amp;lt;style&amp;gt;
        #resized_input { width: 500px; }
        #resized_input [data-component] { width: auto !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;

&lt;P&gt;This work on all inputs: radio, dropdown, checkbox, multiselect, link, time.&lt;BR /&gt;
But on &lt;STRONG&gt;multiselect&lt;/STRONG&gt; input you need to set the width exactly to size.&lt;BR /&gt;
Example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#multiselect_input { width: 500px; }
#multiselect_input [data-component] { width: 500px !important; }
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Dec 2019 17:44:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232810#M14432</guid>
      <dc:creator>BigCosta</dc:creator>
      <dc:date>2019-12-19T17:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232811#M14433</link>
      <description>&lt;P&gt;the auto option is working fine for my multi-select&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 10:17:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232811#M14433</guid>
      <dc:creator>jamieadahan</dc:creator>
      <dc:date>2020-02-17T10:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to use CSS to increase the width of a drop-down input?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232812#M14434</link>
      <description>&lt;P&gt;Thanks this worked for me.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 15:07:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-CSS-to-increase-the-width-of-a-drop-down-input/m-p/232812#M14434</guid>
      <dc:creator>santosh_sshanbh</dc:creator>
      <dc:date>2020-05-21T15:07:30Z</dc:date>
    </item>
  </channel>
</rss>

