mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 17:25:26 -04:00
Email bulk bar: nudge 'Marking…' label up 2px + 'All' checkbox up 2px
- 'Marking done' / 'Marking read' / 'Marking unread' label was 2px low vs. the whirlpool spinner inside the Actions button. The existing loading-label CSS only scoped to #email-lib-bulk-delete; extend it to also cover #email-lib-bulk-actions and bump top from 0 to -2px. - 'All' checkbox label was inline-styled top:2px so the box + text sat lower than the surrounding bulk-action items. Reset to top:0 to match memory + skills select-all rows.
This commit is contained in:
@@ -861,7 +861,7 @@ export function openEmailLibrary(opts = {}) {
|
||||
</div>
|
||||
</div>
|
||||
<div id="email-lib-bulk" class="memory-bulk-bar hidden" style="margin-bottom:5px;">
|
||||
<label class="memory-bulk-check-all" style="position:relative;top:2px;"><input type="checkbox" id="email-lib-select-all"> All</label>
|
||||
<label class="memory-bulk-check-all" style="position:relative;top:0px;"><input type="checkbox" id="email-lib-select-all"> All</label>
|
||||
<span id="email-lib-selected-count" style="position:relative;top:1px;">0 Selected</span>
|
||||
<button class="memory-toolbar-btn" id="email-lib-bulk-actions" style="position:relative;top:-2px;"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:-1px;margin-right:3px;"><line x1="8" y1="6" x2="21" y2="6"/><line x1="8" y1="12" x2="21" y2="12"/><line x1="8" y1="18" x2="21" y2="18"/><line x1="3" y1="6" x2="3.01" y2="6"/><line x1="3" y1="12" x2="3.01" y2="12"/><line x1="3" y1="18" x2="3.01" y2="18"/></svg>Actions <span style="opacity:0.55;font-size:9px;">▼</span></button>
|
||||
<button class="memory-toolbar-btn" id="email-lib-bulk-delete" style="position:relative;top:-2px;"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:-1px;margin-right:3px;"><polyline points="3 6 5 6 21 6"/><path d="M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6"/><path d="M10 11v6"/><path d="M14 11v6"/></svg>Delete</button>
|
||||
|
||||
+7
-4
@@ -10434,23 +10434,26 @@ textarea.memory-add-input {
|
||||
#memory-modal .memory-bulk-bar {
|
||||
padding-right: 18px;
|
||||
}
|
||||
#email-lib-bulk-delete.email-bulk-loading {
|
||||
#email-lib-bulk-delete.email-bulk-loading,
|
||||
#email-lib-bulk-actions.email-bulk-loading {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
opacity: 0.9;
|
||||
cursor: wait;
|
||||
}
|
||||
#email-lib-bulk-delete.email-bulk-loading .email-bulk-whirlpool {
|
||||
#email-lib-bulk-delete.email-bulk-loading .email-bulk-whirlpool,
|
||||
#email-lib-bulk-actions.email-bulk-loading .email-bulk-whirlpool {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
#email-lib-bulk-delete.email-bulk-loading .email-bulk-loading-label {
|
||||
#email-lib-bulk-delete.email-bulk-loading .email-bulk-loading-label,
|
||||
#email-lib-bulk-actions.email-bulk-loading .email-bulk-loading-label {
|
||||
position: relative;
|
||||
top: 0;
|
||||
top: -2px;
|
||||
}
|
||||
/* Drafts bulk bar defaults to justify-content:flex-end (whole row hugs the
|
||||
right). Reset it so All + count sit on the left and only the action button
|
||||
|
||||
Reference in New Issue
Block a user