Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Add option to change quick search bar background color in look and feel

After upgrading JIRA server to 7.11, I noticed that the quick search bar was updated to have a blue tint as the background. This does not go well with the custom look and feel color schemes that we have. I have opened a ticket with JIRA Server to add the ability to change the quick search bar background. If anyone feels that this should be a feature, please upvote this ticket https://jira.atlassian.com/browse/JRASERVER-67648

1 comment

meanwhile, we have inserted the following into our banner


<!-- SEARCH BAR CHANGE START -->
<!-- workaround for https://jira.atlassian.com/browse/JRASERVER-38890 -->
<!-- Searchbar recoloring -->
<style>
#quickSearchInput {
border-radius: 5em;
background: rgb(75,100,85);
color: rgb(241,240,237);
}

#quickSearchInput::-webkit-input-placeholder {
color: rgb(241,240,237);
}
#quickSearchInput:-moz-placeholder {
/#quickSearchInput FF 4-18 #quickSearchInput/
color: rgb(241,240,237);
}
#quickSearchInput::-moz-placeholder {
/#quickSearchInput FF 19+ #quickSearchInput/
color: rgb(241,240,237);
}
#quickSearchInput:-ms-input-placeholder {
/#quickSearchInput IE 10+ #quickSearchInput/
color: rgb(241,240,237);
}

.aui-header .aui-quicksearch::after{
color: rgb(241,240,237);
}
</style>
<!-- SEARCH BAR CHANGE END -->

which changes the background and the input text, but sadly not the guidance/template "Search" text

Comment

Log in or Sign up to comment