[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
1 changed files with 22 additions and 0 deletions

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;
}