Closed
Bug 895565
Opened 13 years ago
Closed 13 years ago
align the black box checkbox with the source label
Categories
(DevTools :: Debugger, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 25
People
(Reporter: fitzgen, Assigned: fitzgen)
References
(Blocks 1 open bug)
Details
Attachments
(1 file, 1 obsolete file)
|
3.84 KB,
patch
|
Details | Diff | Splinter Review |
Even though we don't plan on showing the list of breakpoints when their source is black boxed, if we already have breakpoints on a source, the eyeball is still not aligned properly.
| Assignee | ||
Comment 1•13 years ago
|
||
This aligns the eyeball with the source, however we still have the blue bar on the left. I don't see how we can get rid of the blue bar on the left without mucking with the _target and the contents setter in nasty ways. It just doesn't seem like there is a good solution without refactoring a bunch of SideMenuWidget code. Or maybe I'm just not grooving with the whole Widgets stuff still. Suggestions wanted.
Comment 2•13 years ago
|
||
Comment on attachment 780082 [details] [diff] [review]
v1
Review of attachment 780082 [details] [diff] [review]:
-----------------------------------------------------------------
The horizontal alignment is an easy fix, although the opposite of obvious. Here's a diff:
.side-menu-widget-item-contents {
- padding: 4px;
+ padding: 4px 0px;
}
.side-menu-widget-item-other {
background: url(background-noise-toolbar.png), hsla(208,11%,27%, 0.65);
- margin: 0 -4px;
- -moz-padding-start: 5px;
+ -moz-margin-start: -22px;
}
It doesn't completely remove the left blue bar because I think showing some of it actually looks pretty good. The 22px margin should be modified once the eyeball will be made smaller.
r+ with the above changes.
Attachment #780082 -
Flags: review?(vporof) → review+
Comment 3•13 years ago
|
||
(that's in widgets.css)
| Assignee | ||
Comment 4•13 years ago
|
||
Added stuff victor wanted, and rounded corners which we discussed on irc.
Attachment #780082 -
Attachment is obsolete: true
| Assignee | ||
Comment 5•13 years ago
|
||
Whiteboard: [fixed-in-fx-team]
Comment 6•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 25
Comment 7•13 years ago
|
||
FYI - they are actually not aligned on Windows - http://i.snag.gy/W3iUX.jpg
| Assignee | ||
Comment 8•13 years ago
|
||
Filed bug 898063
Updated•8 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•