<?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: help for formatting a single panel in CSS in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417881#M42226</link>
    <description>&lt;P&gt;hi&lt;/P&gt;

&lt;P&gt;I dont succeed to change the text color&lt;BR /&gt;
is it font-color:red;!important;?&lt;BR /&gt;
other question :&lt;BR /&gt;
what are svg-container, single-result and under-label &lt;BR /&gt;
its proper to splunk? where I can find this classes?&lt;BR /&gt;
thanks&lt;/P&gt;</description>
    <pubDate>Wed, 17 Apr 2019 07:59:14 GMT</pubDate>
    <dc:creator>jip31</dc:creator>
    <dc:date>2019-04-17T07:59:14Z</dc:date>
    <item>
      <title>help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417879#M42224</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;I need to format a single panel in css&lt;BR /&gt;
In my xml I have added this :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#test{vertical-align:middle;color:red!important}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;between style tags&lt;BR /&gt;
and I call the style like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;single id="test"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but it doesnt works&lt;BR /&gt;
could you help me please??&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 05:42:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417879#M42224</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-04-17T05:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417880#M42225</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Check this solution&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/723701/change-background-color-in-single-value-visual.html#answer-728354"&gt;https://answers.splunk.com/answers/723701/change-background-color-in-single-value-visual.html#answer-728354&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 06:10:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417880#M42225</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-17T06:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417881#M42226</link>
      <description>&lt;P&gt;hi&lt;/P&gt;

&lt;P&gt;I dont succeed to change the text color&lt;BR /&gt;
is it font-color:red;!important;?&lt;BR /&gt;
other question :&lt;BR /&gt;
what are svg-container, single-result and under-label &lt;BR /&gt;
its proper to splunk? where I can find this classes?&lt;BR /&gt;
thanks&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 07:59:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417881#M42226</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-04-17T07:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417882#M42227</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Check this sample with font color yellow&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;singleBG&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
         &amp;lt;style&amp;gt;
          #test rect{
           fill: red !important;
           }

           #test .single-result{

           font-size: 15px !important;
           font-weight: normal !important;
           font-style: italic !important;
            fill:rgb(255,255,0) !important;
           }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;
      &amp;lt;single id="test"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" |stats count | eval count = if(count == 0, "no host", "Perimeter : " + tostring(count) + " hosts")&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;block&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x65a637","0xd93f3c","0xd93f3c"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,1]&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Apr 2019 08:11:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417882#M42227</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-17T08:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417883#M42228</link>
      <description>&lt;P&gt;so if i want to change the text color I need to change fill:rgb(255,255,0) !important;??&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 08:44:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417883#M42228</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-04-17T08:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417884#M42229</link>
      <description>&lt;P&gt;yes, you are correct.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 08:46:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417884#M42229</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-17T08:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: help for formatting a single panel in CSS</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417885#M42230</link>
      <description>&lt;P&gt;OK THANKS...&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 08:56:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/help-for-formatting-a-single-panel-in-CSS/m-p/417885#M42230</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2019-04-17T08:56:38Z</dc:date>
    </item>
  </channel>
</rss>

