Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #5724 from brave/brave-panel-UI-tidyup
Browse files Browse the repository at this point in the history
make panel wider to fit strings better, and fix missing class for popup
  • Loading branch information
bsclifton authored Nov 18, 2016
2 parents 552af86 + 9c7d4ab commit d8def8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/components/braveryPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ class BraveryPanel extends ImmutableComponent {
braverySelectTitle: true,
disabled: !shieldsUp
})} data-l10n-id='cookieControl' />
<select value={this.props.braverySettings.cookieControl} onChange={this.onToggleCookieControl} disabled={!shieldsUp}>
<select className='form-control' value={this.props.braverySettings.cookieControl} onChange={this.onToggleCookieControl} disabled={!shieldsUp}>
<option data-l10n-id='block3rdPartyCookie' value='block3rdPartyCookie' />
<option data-l10n-id='allowAllCookies' value='allowAllCookies' />
</select>
Expand Down
3 changes: 2 additions & 1 deletion less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
border-radius: @borderRadius;
padding: 0;
text-align: left;
width: 473px;
width: 500px;
right: 20px;
-webkit-user-select: none;
cursor: default;
Expand Down Expand Up @@ -428,6 +428,7 @@
.braveryAdvancedIndicator {
margin-left: 5px;
margin-right: 5px;
margin-top: 2px;
}
}

Expand Down

0 comments on commit d8def8c

Please sign in to comment.