Skip to content
New issue

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

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

Already on GitHub? # to your account

[Issue 385] change Advanced options div ID #449

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ui/assets/css/hound.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ button:focus {
background-color: #fff;
}

#adv {
#advanced {
box-sizing: border-box;
overflow: hidden;
height: 0;
Expand All @@ -118,23 +118,23 @@ button:focus {
}

/* Media object clearfix */
#adv > .field {
#advanced > .field {
overflow: hidden;
}

#adv > .field > label {
#advanced > .field > label {
/* Media object left */
float: left;
width: 100px;
color: #767676;
}

#adv > .field > .field-input {
#advanced > .field > .field-input {
/* New block formatting context for media object */
overflow: hidden;
}

#adv > .field input[type=text] {
#advanced > .field input[type=text] {
line-height: 24px;
box-sizing: border-box;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion ui/assets/js/hound.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ var SearchBar = React.createClass({
</div>

<div id="inb">
<div id="adv" ref="adv">
<div id="advanced" ref="adv">
<span
className="octicon octicon-chevron-up hide-adv"
onClick={this.hideAdvanced}
Expand Down
Loading