* Use separate modal for set pin
* Fix modal style and layout
* Minor fixes
* Remove incorrect label
* Fix initial focus and tab a11y
* Fix unrelated linting
* Update jslib
* Markup changes
* Render in notification bar folders list that is provided form TS code
* Implemented getting of folders list
* Refactor addPlatformEventListener and added default selection of "No Folder"
* Pass folder id info to saveAddLogin
* Modify saveAddLogin to use folder id
* Try to fix default folder selection
* Fix styling issues found during review
* Fix review issues found by kspearrin
* Fix default selection and null handling
* Fix import order
* Applied review suggestions
* Implement checking if folderExist during saving
* Fix compile issues
* Added select folder... option
* Add internalization for select folder message
* Hide select folder element on narrow screens
* Fix lint issues
* Review fixes in notification bar
* Adjust semi-responsive layout for folder selector
* Revert style change
Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
* Add iframe allow to initial load
Chrome seems to balk at this attribute being added after the fact. It
may be a race condition or an intentional block, but adding to the
template fixes our missing allow attribute problem.
* Update jslib
- `visibility:hidden` also hides text from assistive technologies, leading to the settings link lacking an accessible name when not hovered (focused with keyboard only, for instance)
- turn the styles around and hide the non-hovered link's span with "visually hidden" styles https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
- also include `:focus` to make the text visible when hovered (for sighted keyboard users)
- more semantically accurate, will expose these as buttons to assistive technologies
- note: while having block-level elements like `<div>` inside a `<button>` is an html validation error, it does not affect functionality as long as there's no more structure inside it