mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-22 11:45:59 +01: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:
parent
3bf1aa5053
commit
3ae30d866c
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user