<?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: CSS not working with Dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332476#M21565</link>
    <description>&lt;P&gt;I have my dashboard full of single value fields. instead of showing single value i want to show icons as in the attachment. for that i tried to implement by adding progress add inside my panel but not working&lt;IMG src="https://www.splunk.com/content/dam/splunk-blogs/images/2015/06/dashboard_examples.png" alt="alt text" /&gt;. above message has customdecorations css. Please guide me. i have presentation today. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;label&amp;gt;Online Quotation&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;~&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
    &amp;lt;input type="time" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;&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;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Profiler&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=&amp;lt;&amp;gt; sourcetype="profiler" timeout&amp;amp;gt;5000| stats count&amp;lt;/query&amp;gt;
          &amp;lt;progress&amp;gt;
            &amp;lt;set token="value3"&amp;gt;$result.value$&amp;lt;/set&amp;gt;
            &amp;lt;set token="range3"&amp;gt;$result.range$&amp;lt;/set&amp;gt;
          &amp;lt;/progress&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;link target="_blank"&amp;gt;/app/gre/profiler&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&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>Thu, 25 Jan 2018 02:53:17 GMT</pubDate>
    <dc:creator>sathish2k8</dc:creator>
    <dc:date>2018-01-25T02:53:17Z</dc:date>
    <item>
      <title>CSS not working with Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332474#M21563</link>
      <description>&lt;P&gt;I am using CustomDecorations.css for my dashboard how to add it with my panels. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.custom-result-value {
    font-size: 55px;
    margin: 35px auto;
    text-align: center;
    font-weight: bold;
    color: rgb(85, 85, 85);
}
.custom-result-value:before {
    font-family: "Splunk Icons";
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 110%;
}
.severe.custom-result-value:before {
    content: "\2297";
}
.severe.custom-result-value {
    color: rgb(217, 63, 60);
}
.high.custom-result-value {
    color: rgb(245, 143, 57);
}
.high.custom-result-value:before {
    content: "\ECD4";
}
.elevated.custom-result-value {
    color: rgb(247, 188, 56);
}
.elevated.custom-result-value:before {
    content: "\26A0";
}
.low.custom-result-value {
    color: rgb(101, 166, 55);
}
.low.custom-result-value:before {
    content: "\ECD3";
}
.guarded.custom-result-value {
    color: rgb(109, 183, 198);
}
.guarded.custom-result-value:before {
    content: "\0049";
}
.custom-result-value.icon-only {
    font-size: 90px;
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Jan 2018 12:03:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332474#M21563</guid>
      <dc:creator>sathish2k8</dc:creator>
      <dc:date>2018-01-24T12:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: CSS not working with Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332475#M21564</link>
      <description>&lt;P&gt;@sathish2k8 please add more details as to what you are trying to implement.&lt;/P&gt;

&lt;P&gt;In order to add CSS Splunk Dashboard there could be several ways... to begin with try to add the following to Simple XML dashboard:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;
    &amp;lt;panel&amp;gt;
         &amp;lt;html&amp;gt;
               &amp;lt;style&amp;gt;
             .custom-result-value {
                 font-size: 55px;
                 margin: 35px auto;
                 text-align: center;
                 font-weight: bold;
                 color: rgb(85, 85, 85);
             }
             .custom-result-value:before {
                 font-family: "Splunk Icons";
                 font-style: normal;
                 font-weight: normal;
                 text-decoration: inherit;
                 font-size: 110%;
             }
             .severe.custom-result-value:before {
                 content: "\2297";
             }
             .severe.custom-result-value {
                 color: rgb(217, 63, 60);
             }
             .high.custom-result-value {
                 color: rgb(245, 143, 57);
             }
             .high.custom-result-value:before {
                 content: "\ECD4";
             }
             .elevated.custom-result-value {
                 color: rgb(247, 188, 56);
             }
             .elevated.custom-result-value:before {
                 content: "\26A0";
             }
             .low.custom-result-value {
                 color: rgb(101, 166, 55);
             }
             .low.custom-result-value:before {
                 content: "\ECD3";
             }
             .guarded.custom-result-value {
                 color: rgb(109, 183, 198);
             }
             .guarded.custom-result-value:before {
                 content: "\0049";
             }
             .custom-result-value.icon-only {
                 font-size: 90px;
             }
               &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>Wed, 24 Jan 2018 20:04:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332475#M21564</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-01-24T20:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: CSS not working with Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332476#M21565</link>
      <description>&lt;P&gt;I have my dashboard full of single value fields. instead of showing single value i want to show icons as in the attachment. for that i tried to implement by adding progress add inside my panel but not working&lt;IMG src="https://www.splunk.com/content/dam/splunk-blogs/images/2015/06/dashboard_examples.png" alt="alt text" /&gt;. above message has customdecorations css. Please guide me. i have presentation today. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;label&amp;gt;Online Quotation&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;~&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
    &amp;lt;input type="time" token="field1"&amp;gt;
      &amp;lt;label&amp;gt;&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;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Profiler&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=&amp;lt;&amp;gt; sourcetype="profiler" timeout&amp;amp;gt;5000| stats count&amp;lt;/query&amp;gt;
          &amp;lt;progress&amp;gt;
            &amp;lt;set token="value3"&amp;gt;$result.value$&amp;lt;/set&amp;gt;
            &amp;lt;set token="range3"&amp;gt;$result.range$&amp;lt;/set&amp;gt;
          &amp;lt;/progress&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;link target="_blank"&amp;gt;/app/gre/profiler&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&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>Thu, 25 Jan 2018 02:53:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332476#M21565</guid>
      <dc:creator>sathish2k8</dc:creator>
      <dc:date>2018-01-25T02:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: CSS not working with Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332477#M21566</link>
      <description>&lt;P&gt;@sathish2k8, if you need it ASAP, you should try to use &lt;CODE&gt;Status Indicator custom visualization&lt;/CODE&gt; from Splunkbase: &lt;A href="https://splunkbase.splunk.com/app/3119/"&gt;https://splunkbase.splunk.com/app/3119/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Refer to following answer to do something similar with Single Value visualization and Status Indicator Custom Visualization: &lt;A href="https://answers.splunk.com/answers/590581/refresh-data-in-table-by-collecting-token-on-click.html"&gt;https://answers.splunk.com/answers/590581/refresh-data-in-table-by-collecting-token-on-click.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 03:46:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332477#M21566</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-01-25T03:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: CSS not working with Dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332478#M21567</link>
      <description>&lt;P&gt;Don't forget to restart your Splunk daemon. In earlier versions of Splunk, a restart was required before new stylesheets took effect.&lt;/P&gt;

&lt;P&gt;Skalli&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 12:56:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-not-working-with-Dashboard/m-p/332478#M21567</guid>
      <dc:creator>skalliger</dc:creator>
      <dc:date>2018-01-26T12:56:19Z</dc:date>
    </item>
  </channel>
</rss>

