1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-02 04:48:57 +02:00

[PS-1030] Desktop: suppress user-select for most interface elements (#2650)

* Desktop: suppress user-select for most interface elements

* Better way to target .box-footer

make it non-selectable everywhere (to avoid missing stragglers) but explicitly make it selectable in the `app-vault-view` (so we can select the "Updated: ..." footer text)

* Prettier

* Remove orphaned jslibs
This commit is contained in:
Patrick H. Lauke 2022-06-29 20:13:20 +01:00 committed by GitHub
parent 3bf1aa5053
commit 3ae30d866c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -468,3 +468,25 @@ app-root > #loading,
.rounded-circle {
border-radius: 50% !important;
}
h1,
h2,
h3,
label,
a,
button,
p,
img,
.box-header,
.box-footer,
.row-label,
.modal-title,
.overlay-container,
.help-block,
.form-text.text-muted {
user-select: none;
}
app-vault-view .box-footer {
user-select: auto;
}