Merge pull request #545 from deerwithacurl/patch-1

fix being able to highlight tooltip text
This commit is contained in:
booploops 2022-03-04 22:09:39 -08:00 committed by GitHub
commit 69aa707e78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7605,6 +7605,9 @@ fieldset:disabled .btn {
text-align : center; text-align : center;
background-color: #000; background-color: #000;
border-radius : 0.25rem; border-radius : 0.25rem;
-webkit-user-select: none;
user-select: none;
pointer-events: none;
} }
.popover { .popover {
@ -7763,4 +7766,4 @@ fieldset:disabled .btn {
.popover-body { .popover-body {
padding: 1rem 1rem; padding: 1rem 1rem;
color : #212529; color : #212529;
} }