Refine your search:

Hi,

After a JobStatus module has finished loading to 100% in my view, it leaves a few objects behind including this grey line shown in the following picture:

http://imageshack.us/photo/my-images/21/jobstatusline.jpg

How can this grey line be removed? Can this be removed or hidden via application.css?

asked 27 Jul '11, 02:06

Ant1D's gravatar image

Ant1D
8464441
accept rate: 37%


One Answer:

Sure can. If you put this in application.css it will take it away across the entire app.

.JobStatus {
    border-bottom:0px;
}

or you can put it in a special stylesheet, like my_custom_styles.css, and then reference it in the view XML as an attribute on the root node, stylesheet="my_custom_styles,css"

or if you want to keep it in application.css, this will apply the style in just in one view.

.splView-<VIEWNAME> JobStatus {
    border-bottom:0px;
}

See the Splunk documentation around custom CSS for more general details:

http://www.splunk.com/base/Documentation/4.2.2/Developer/UseCSS

link

answered 29 Jul '11, 13:09

sideview's gravatar image

sideview ♦
25.6k4543
accept rate: 46%

edited 29 Jul '11, 13:10

Thanks. Your second example is particularly useful to know. Especially as I prefer this to creating additional stylesheets each time I want to apply a change to a specific view.

(02 Aug '11, 04:15) Ant1D
Post your answer
toggle preview

Follow this question

Log In to enable email subscriptions

RSS:

Answers

Answers + Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×120
×110
×56
×34
×3

Asked: 27 Jul '11, 02:06

Seen: 745 times

Last updated: 02 Aug '11, 04:15

Copyright © 2005-2012 Splunk Inc. All rights reserved.