<?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: overriding certain values in default.css with application.css in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73930#M181144</link>
    <description>&lt;P&gt;yes i did that also. actually the application.css file was not new . but no change&lt;/P&gt;</description>
    <pubDate>Fri, 28 Dec 2012 11:49:27 GMT</pubDate>
    <dc:creator>smolcj</dc:creator>
    <dc:date>2012-12-28T11:49:27Z</dc:date>
    <item>
      <title>overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73928#M181142</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;
i want to change the fontsize of a single result table in application.css. i did a homework and i tried&lt;BR /&gt;
    &lt;PRE&gt;  .SingleValue .singleResult {&lt;BR /&gt;
        font-size: 14px;!important;&lt;BR /&gt;
        vertical-align: 0px;!important;&lt;BR /&gt;
        margin: 0px 6px;&lt;BR /&gt;
     }&lt;/PRE&gt;&lt;BR /&gt;
but this is not working for my app. if i am changing default.css, the changes are reflected in my app. but it is not happening with application.css. i tried clearing browser cache also.&lt;BR /&gt;&lt;BR /&gt;
please help&lt;BR /&gt;&lt;BR /&gt;
thank you&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2012 11:34:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73928#M181142</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2012-12-28T11:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73929#M181143</link>
      <description>&lt;P&gt;If you have created application.css for the 1st time - you must restart splunk for the change to take effect. You only need to do this once, modifications to the file after the initial creation only need a browser refresh&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2012 11:44:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73929#M181143</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-12-28T11:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73930#M181144</link>
      <description>&lt;P&gt;yes i did that also. actually the application.css file was not new . but no change&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2012 11:49:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73930#M181144</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2012-12-28T11:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73931#M181145</link>
      <description>&lt;P&gt;First up, that css is wrong.  There's no ';' between the attribute value and &lt;CODE&gt;!important&lt;/CODE&gt;&lt;BR /&gt;
Also your overriding margins and alignments on 2 very different CSS classes, which is unlikely to be what you are intending to do.&lt;/P&gt;

&lt;P&gt;You also dont need to be defining important values.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Edit -    the css differs in v4 and v5 of splunk&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;To change the font size in SingleValues in splunk 4.X you need this in application.css :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.SingleValueHolder {
    font-size: 14px;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;To change the font size in SingleValues in splunk 5.X you need this in application.css :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.SingleValue .singleResult {
    font-size: 14px;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Restart splunk if you created the file for hte 1st time, the n Ctrl+F5 your view.&lt;/P&gt;

&lt;P&gt;ProTip : Install the Firebug plug-in for firefox, and activate it.&lt;/P&gt;

&lt;P&gt;Load your view, In firebug, use the element picker to highlight a element of the web page you are interested in.&lt;/P&gt;

&lt;P&gt;On the right side it will show you the CSS that styles that element, so you know what you should be overriding in your application.css&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2012 12:03:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73931#M181145</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-12-28T12:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73932#M181146</link>
      <description>&lt;P&gt;The default font size is 14px - you wouldn't see much of a change....&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2012 13:17:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73932#M181146</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-12-28T13:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73933#M181147</link>
      <description>&lt;P&gt;thanks jonuwz, but the size of the result value of single value panel is 28px, how to change it to 14px.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Dec 2012 05:52:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73933#M181147</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2012-12-31T05:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: overriding certain values in default.css with application.css</title>
      <link>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73934#M181148</link>
      <description>&lt;P&gt;what version of splunk 4 or 5 ?&lt;/P&gt;

&lt;P&gt;Updated answer with v5 css&lt;/P&gt;</description>
      <pubDate>Mon, 31 Dec 2012 14:22:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/overriding-certain-values-in-default-css-with-application-css/m-p/73934#M181148</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-12-31T14:22:25Z</dc:date>
    </item>
  </channel>
</rss>

