Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions web/comment_manager.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
align-items: flex-start;
gap: 4px;

*:focus-visible {
outline: 2px solid var(--comment-focus-outline-color);
outline-offset: 0;
}

#commentManagerToolbar {
width: 100%;
height: 32px;
Expand Down
6 changes: 3 additions & 3 deletions web/viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -792,12 +792,12 @@
</div>
</dialog>

<dialog class="dialog commentManager" id="commentManagerDialog">
<dialog class="dialog commentManager" id="commentManagerDialog" aria-labelledby="commentManagerTitle">
<div class="mainContainer">
<div class="title" id="commentManagerToolbar">
<span id="commentManagerTitle" role="sectionhead" data-l10n-id="pdfjs-editor-edit-comment-dialog-title-when-adding" tabindex="0"></span>
<span id="commentManagerTitle" role="sectionhead" data-l10n-id="pdfjs-editor-edit-comment-dialog-title-when-adding"></span>
</div>
<textarea id="commentManagerTextInput" data-l10n-id="pdfjs-editor-edit-comment-dialog-text-input"></textarea>
<textarea id="commentManagerTextInput" data-l10n-id="pdfjs-editor-edit-comment-dialog-text-input" tabindex="0"></textarea>
<div class="dialogButtonsGroup">
<button id="commentManagerCancelButton" type="button" class="secondaryButton" tabindex="0">
<span data-l10n-id="pdfjs-editor-edit-comment-dialog-cancel-button"></span>
Expand Down