(Resolved) Bug: The "Find" dialog in the app editor uses light gray text on a white background

Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36

22 PM

2 Likes

@JeffTalbot, This could be easily fixed by adding the “color” property to the .ace_searchbox css rule (see last line below)

.ace_search_field {
    background-color: whites;
    border-right: 1px solid #cbcbcb;
    border: 0 none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    height: 22px;
    outline: 0;
    padding: 0 7px;
    width: 214px;
    margin: 0;
    color: #000;
}
1 Like

This issue has been fixed.