mirror of
https://github.com/zen-browser/desktop.git
synced 2026-06-13 15:03:41 +00:00
gh-14045: Fixed sidebar notifications overflowing text (gh-14047)
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
display: flex;
|
||||
position: relative;
|
||||
flex: 1;
|
||||
padding: 8px;
|
||||
padding: 16px;
|
||||
border-bottom: 1px solid color-mix(in srgb, currentColor 10%, transparent);
|
||||
}
|
||||
|
||||
@@ -38,6 +38,12 @@
|
||||
white-space: nowrap;
|
||||
font-weight: 500;
|
||||
flex: 1;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
transform: translateY(-50%);
|
||||
width: calc(100% - 40px);
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.zen-sidebar-notification-close-button {
|
||||
|
||||
@@ -955,7 +955,7 @@ class nsZenWorkspaces {
|
||||
}
|
||||
gZenEmojiPicker.open(anchor, {
|
||||
closeOnSelect: false,
|
||||
allowNone: hasNoIcon,
|
||||
allowNone: !hasNoIcon,
|
||||
onSelect: async icon => {
|
||||
const workspace = this.getWorkspaceFromId(workspaceId);
|
||||
if (!workspace) {
|
||||
|
||||
Reference in New Issue
Block a user