Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve accessibility #398

Merged
merged 10 commits into from
May 13, 2021
14 changes: 7 additions & 7 deletions ui/assets/css/hound.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ a {
color: #09f;
}

.link-gray { color: #aaa }
.link-gray { color: #767676 }

input {
font-family: inherit;
Expand All @@ -29,7 +29,7 @@ button {
text-align: center;
display: inline-block;
color: #fff;
background-color: #09f;
background-color: #007acc;
border: 0;
border-radius: 3px;
cursor: pointer;
Expand Down Expand Up @@ -126,7 +126,7 @@ button:focus {
/* Media object left */
float: left;
width: 100px;
color: #999;
color: #767676;
}

#adv > .field > .field-input {
Expand Down Expand Up @@ -160,19 +160,19 @@ button:focus {
opacity: 1;
overflow: hidden;
cursor: pointer;
color: #767676;
}

#inb > .ban > em {
font-style: normal;
color: #aaa;
}

#input > .stats {
width: 95%;
font-size: 12px;
padding: 4px 0;
margin: 0 auto;
color: #aaa;
color: #767676;
}

/* Clearfix .stats */
Expand Down Expand Up @@ -224,7 +224,7 @@ button:focus {
}

.repo > .title {
color: #666;
color: #767676;
font-size: 24px;
padding-bottom: 5px;
}
Expand Down Expand Up @@ -291,7 +291,7 @@ button:focus {
border-right: 1px solid #eee;
display: inline-block;
font-size: 14px;
color: #aaa;
color: #767676;
}

.match > .line:last-child > .lnum {
Expand Down
2 changes: 1 addition & 1 deletion ui/assets/index.tpl.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
Expand Down
3 changes: 2 additions & 1 deletion ui/assets/js/hound.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,12 +497,13 @@ var SearchBar = React.createClass({
<input id="q"
type="text"
placeholder="Search by Regexp"
aria-label="Search by Regexp"
ref="q"
autocomplete="off"
onKeyDown={this.queryGotKeydown}
onFocus={this.queryGotFocus}/>
<div className="button-add-on">
<button id="dodat" onClick={this.submitQuery}></button>
<button id="dodat" title="Search" onClick={this.submitQuery}></button>
</div>
</div>

Expand Down
Loading