Closed
Bug 749626
Opened 14 years ago
Closed 14 years ago
Theme update: make the close button code generic and implement the dark theme for menulists.
Categories
(DevTools :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 15
People
(Reporter: paul, Assigned: paul)
References
Details
(Whiteboard: [fixed-in-fx-team])
Attachments
(1 file, 5 obsolete files)
|
18.28 KB,
patch
|
dao
:
review+
|
Details | Diff | Splinter Review |
3 different patches need these changes.
| Assignee | ||
Updated•14 years ago
|
| Assignee | ||
Comment 1•14 years ago
|
||
| Assignee | ||
Updated•14 years ago
|
| Assignee | ||
Updated•14 years ago
|
Assignee: nobody → paul
| Assignee | ||
Updated•14 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•14 years ago
|
||
Here is some code to test:
let menulist = document.createElement("menulist");
menulist.className = "devtools-menulist";
let menupopup = document.createElement("menupopup");
menulist.appendChild(menupopup);
let i1 = document.createElement("menuitem"); let i2 = document.createElement("menuitem");
i1.setAttribute("label", "foo"); i2.setAttribute("label", "foo foo bar bar");
menupopup.appendChild(i1); menupopup.appendChild(i2);
InspectorUI.toolbar.appendChild(menulist);
Copy/paste in scratchpad (browser mode). Run with the Inspector open.
| Assignee | ||
Comment 3•14 years ago
|
||
| Assignee | ||
Updated•14 years ago
|
Attachment #619039 -
Attachment is obsolete: true
| Assignee | ||
Comment 4•14 years ago
|
||
osx style
| Assignee | ||
Updated•14 years ago
|
Attachment #620360 -
Attachment is obsolete: true
| Assignee | ||
Comment 5•14 years ago
|
||
Windows style (includes a fix for some the breadcrumbs)
| Assignee | ||
Updated•14 years ago
|
Attachment #620731 -
Attachment is obsolete: true
| Assignee | ||
Comment 6•14 years ago
|
||
| Assignee | ||
Updated•14 years ago
|
Attachment #621542 -
Attachment is obsolete: true
| Assignee | ||
Comment 7•14 years ago
|
||
| Assignee | ||
Updated•14 years ago
|
Attachment #621555 -
Attachment is obsolete: true
| Assignee | ||
Comment 8•14 years ago
|
||
Comment on attachment 621600 [details] [diff] [review]
patch v1
This patch includes:
- shared close button style
- fix for the searchinput style
- menulist style
- fix some misalignment and focus-ring problems of the breadcrumbs on Windows
Attachment #621600 -
Flags: review?(dao)
| Assignee | ||
Comment 9•14 years ago
|
||
review ping
Updated•14 years ago
|
Attachment #621600 -
Flags: review?(dao) → review+
| Assignee | ||
Updated•14 years ago
|
Whiteboard: [land-in-fx-team]
| Assignee | ||
Comment 10•14 years ago
|
||
Whiteboard: [land-in-fx-team] → [fixed-in-fx-team]
Comment 11•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 15
Updated•8 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•