Closed
Bug 1911194
Opened 9 months ago
Closed 9 months ago
Only set min-width of sidebar panel if it contains GenAI chatbot
Categories
(Firefox :: Sidebar, task)
Firefox
Sidebar
Tracking
()
VERIFIED
FIXED
130 Branch
People
(Reporter: kcochrane, Assigned: kcochrane)
References
(Blocks 1 open bug)
Details
(Whiteboard: [fidefe-sidebar])
Attachments
(1 file)
Currently, we're setting the width of all sidebar panels to 400px to accommodate the GenAI chatbot panel. Other panels such as history and synced tabs appear excessively wide at this width.
A potential solution for this is to only set a min-width: 400px
on the #sidebar-box
element only if it contains the GenAI chatbot content by using the sidebarcommand="viewGenaiChatSidebar"
attribute such as:
#sidebar-box {
...
&[sidebarcommand="viewGenaiChatSidebar"] {
min-width: 400px;
}
}
Assignee | ||
Comment 1•9 months ago
|
||
Assignee | ||
Updated•9 months ago
|
Points: --- → 1
Whiteboard: [fidefe-sidebar]
Updated•9 months ago
|
Assignee | ||
Updated•9 months ago
|
Assignee: nobody → kcochrane
Status: NEW → ASSIGNED
Updated•9 months ago
|
Attachment #9417376 -
Attachment description: WIP: Bug 1911194 - Only set default min-width of #sidebar-box if it contains GenAI chatbot → Bug 1911194 - Only set default min-width of #sidebar-box if it contains GenAI chatbot
Updated•9 months ago
|
Attachment #9417376 -
Attachment description: Bug 1911194 - Only set default min-width of #sidebar-box if it contains GenAI chatbot → Bug 1911194 - Set the default min-width of #sidebar-box to 400px if it contains GenAI chatbot
Pushed by kcochrane@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/0cbe825fe208
Set the default min-width of #sidebar-box to 400px if it contains GenAI chatbot r=desktop-theme-reviewers,sidebar-reviewers,nsharpley,sfoster
Comment 3•9 months ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 9 months ago
status-firefox130:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 130 Branch
Comment 4•9 months ago
|
||
Verified as fixed in our latest Nightly and our latest Beta build 130.0b5
You need to log in
before you can comment on or make changes to this bug.
Description
•