The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I change the tint colour from around the confluence searchbox?

Liam O'Neill
Contributor
August 14, 2012

When you click into the search box in the top right of the screen, the box is highlighted blue around the edges. How do I change this highlight colour? Is it in CSS?

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
Sean Curtis
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 15, 2012

Alternatively you can set outline: none; - take a look at http://jsbin.com/ekateg/1/

You need to set a background or border in order for it to work in Firefox. This might be better than the heavy-handed approach presented by Oliver.

Liam O'Neill
Contributor
August 15, 2012

Thanks Sean, that worked a treat.

For reference to others, the CSS code is:

input {
  background-color: #fff;
  border: 1px solid #999;
  outline: none;
}


2 votes
Oli S
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 14, 2012

If I understood you correct you mean the highlighting, which is comming from the browser.

this is a html5 thing. I struggled around a lot, as I wrote a theme for confluence.

its really hard tu supress this ;-)

something to read: http://css-tricks.com/webkit-html5-search-inputs/

what I've done:

input[type="search"] {

    -webkit-appearance: textfield;

}



input[type="search"]::-webkit-search-decoration,

input[type="search"]::-webkit-search-cancel-button,

input[type="search"]::-webkit-search-results-button,

input[type="search"]::-webkit-search-results-decoration {

    display: none;

}



/*http://css-tricks.com/webkit-html5-search-inputs/*/

I hope this helps

cheers

oli

TAGS
AUG Leaders

Atlassian Community Events