How to change quick search box color in JIRA 6.3

Dattatray Borude
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 Leaders.
September 10, 2014

How to change quick search box color in JIRA 6.3.4?

I want to highlight Search box.

BNYM JIRA Menu Bar.jpg

3 answers

1 accepted

0 votes
Answer accepted
Dattatray Borude
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 Leaders.
October 7, 2014

** Add below script to Announcement Banner

 

<!--Temporary Style for Search Box-->

 

<style>

#quickSearchInput {

border-radius: 5em;

background: rgba(255,255,255,1);

color: rgba(0, 0, 0, 0.7);

}

 

#quickSearchInput::-webkit-input-placeholder {

    color: rgba(0, 0, 0, 0.7);

}

#quickSearchInput:-moz-placeholder {

    /#quickSearchInput FF 4-18 #quickSearchInput/

    color: rgba(0, 0, 0, 0.7);

}

#quickSearchInput::-moz-placeholder {

    /#quickSearchInput FF 19+ #quickSearchInput/

    color: rgba(0, 0, 0, 0.7);

}

#quickSearchInput:-ms-input-placeholder {

    /#quickSearchInput IE 10+ #quickSearchInput/

    color: rgba(0, 0, 0, 0.7);

}

 

.aui-header .aui-quicksearch::after{

color: rgba(0, 0, 0, 0.7);

}

</style>

 

<!--Temporary Style for Search Box End-->

 

 

0 votes
mohit mathur December 8, 2014

Hi

I have applied the above code in the Announcement banner
Chrome and IE is showing the search box as per changes (white background and grey search text and search button ). Firefox is showing the white background and grey search button but search text is not grey . It is also white . As a result of which search text is not visible in Firefox. 

0 votes
Dattatray Borude
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 Leaders.
September 14, 2014

Vicky Kharisma [Atlassian] Thursday 3:29 PM Hi Datta, Thanks for contacting Support. Please be reminded that Atlassian doesn't provide support for a customisation or development request as per our Support Offering. However, I've spent some time to look into the code and we can't change the quick search background manually. The quick search box CSS is defined under the atlassian-jira/static-assets/metal-all.css and you can see there is no properties around the text-field background: {noformat} .aui-header .aui-quicksearch input{-moz-appearance:textfield;-webkit-appearance:textfield;background:#dc3912;border:2;border-radius:5em;box-shadow:inset 1px 2px 3px rgba(0,0,0,0.3);-moz-box-sizing:border-box;box-sizing:border-box;color:#333;font-family:inherit;font-size:inherit;height:1.71428571428571em;line-height:1.42857142857143;margin:8px 0;padding:2px 10px;vertical-align:baseline;width:170px} .aui-header .aui-quicksearch input:focus{background-color:#dc3912;outline:0} .aui-header .aui-quicksearch input::-webkit-input-placeholder{color:#707070} .aui-header .aui-quicksearch input::-moz-placeholder{color:#707070;opacity:1} {noformat} Given that, you may want to change the header to a slightly brighter color, or make the text color brighter. Thanks, Vicky Kharisma Atlassian Support

Suggest an answer

Log in or Sign up to answer