Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'keepassxc-browser/css/autocomplete.css')
-rw-r--r--keepassxc-browser/css/autocomplete.css14
1 files changed, 8 insertions, 6 deletions
diff --git a/keepassxc-browser/css/autocomplete.css b/keepassxc-browser/css/autocomplete.css
index 41c4d1c..0acdaa2 100644
--- a/keepassxc-browser/css/autocomplete.css
+++ b/keepassxc-browser/css/autocomplete.css
@@ -2,6 +2,11 @@
display: none;
z-index: 2147483646;
position: absolute !important;
+ background-color: #ddd;
+ border: 1px solid rgba(0,0,0,.125);
+ border-bottom-right-radius: 4px;
+ border-bottom-left-radius: 4px;
+ overflow: hidden; /* this fixes an issue with the border radius not showing up clearly */
}
.kpxcAutocomplete-items {
@@ -13,8 +18,7 @@
padding: 5px;
cursor: pointer;
background-color: var(--kpxc-background-color);
- border: 1px solid rgba(0,0,0,.125) !important;
- border-top-width: 0px !important;
+ border-bottom: 1px solid rgba(0,0,0,.125);
width: auto;
color: var(--kpxc-text-color);
font-size: max(10px, .9em) !important;
@@ -25,8 +29,7 @@
}
.kpxcAutocomplete-items div:last-child {
- border-bottom-right-radius: 4px !important;
- border-bottom-left-radius: 4px !important;
+ border-bottom: none;
}
.kpxcAutocomplete-active {
@@ -36,8 +39,7 @@
#kpxcAutocomplete-container footer {
padding: 5px;
- background-color: #ddd;
- border: 1px solid rgba(0,0,0,.125) !important;
+ border-top: 1px solid rgba(0,0,0,.125) !important;
width: auto;
color: #000;
font-size: max(9px, .8em) !important;