mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Purecss compat - force letter-spacing
In pages based on purecss, the default letter-spacing is negative. This lead to unreadable keepassxc entries in the autocomplete list and notifications. This patch forces the letter-spacing and word-spacing to 'normal', and text-rendering to 'auto', which is what purecss does in elements displaying text.
This commit is contained in:
parent
bed5115405
commit
4489ad2583
2 changed files with 6 additions and 0 deletions
|
|
@ -11,6 +11,9 @@
|
|||
width: auto;
|
||||
color: var(--kpxc-text-color);
|
||||
font-size: .9em !important;
|
||||
letter-spacing: normal !important;
|
||||
word-spacing: normal !important;
|
||||
text-rendering: auto !important;
|
||||
}
|
||||
|
||||
.kpxcAutocomplete-items div:last-child {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@
|
|||
cursor: pointer;
|
||||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-size: 14px;
|
||||
letter-spacing: normal !important;
|
||||
word-spacing: normal !important;
|
||||
text-rendering: auto !important;
|
||||
margin: 0px auto;
|
||||
margin-bottom: 20px;
|
||||
padding: 15px;
|
||||
|
|
|
|||
Loading…
Reference in a new issue