Skip to content
This repository has been archived by the owner on Jul 3, 2018. It is now read-only.

Commit

Permalink
Bug 1217884 - Remove double spacing between devtools toolbar and devt…
Browse files Browse the repository at this point in the history
…ools inputs;r=pbrosset

--HG--
extra : commitid : IkQ98XjCU41
  • Loading branch information
bgrins committed Oct 26, 2015
1 parent 162d0cd commit 57708c4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions devtools/client/themes/toolbars.inc.css
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,23 @@
margin-right: 0;
}

/* Don't add 'double spacing' for inputs that are at beginning / end
of a toolbar (since the toolbar has it's own spacing). */
.devtools-toolbar > .devtools-textinput:first-child,
.devtools-toolbar > .devtools-searchinput:first-child {
-moz-margin-start: 0;
}
.devtools-toolbar > .devtools-textinput:last-child,
.devtools-toolbar > .devtools-searchinput:last-child {
-moz-margin-end: 0;
}
.devtools-toolbar > .devtools-searchbox:first-child {
-moz-padding-start: 0;
}
.devtools-toolbar > .devtools-searchbox:last-child {
-moz-padding-end: 0;
}

.devtools-rule-searchbox {
-moz-box-flex: 1;
padding-right: 23px;
Expand Down

0 comments on commit 57708c4

Please sign in to comment.