updates to tridactyl

This commit is contained in:
Chris Cochrun 2023-10-19 09:47:49 -05:00
parent a4a7d84d7c
commit 88981c72f4
3 changed files with 67 additions and 21 deletions

View file

@ -22,6 +22,7 @@
--tridactyl-url-bg: var(--base00);
--tridactyl-highlight-box-bg: var(--base0D);
--tridactyl-highlight-box-fg: var(--base00);
--tridactyl-cmplt-option-height: 1.4em;
/* Hint character tags */
--tridactyl-hintspan-fg: var(--base00) !important;
@ -36,8 +37,15 @@
}
#command-line-holder { order: 1;
/*border: 2px solid var(--base0B);*/
color: var(--tridactyl-bg);
/* border: 2px solid var(--base0B); */
color: var(--tridactyl-bg) !important;
background: var(--tridactyl-bg) !important;
}
:root #completions table tr td.prefix,
:root #completions table tr td.privatewindow,
:root #completions table tr td.container,
:root #completions table tr td.icon {
display: none;
}
#tridactyl-input { color: var(--tridactyl-fg);
@ -51,7 +59,7 @@
}
#completions table { font-size: 1.0rem !important;
font-weight: 800 !important;
font-weight: 600 !important;
border-spacing: 0;
table-layout: fixed;
padding: 1rem;
@ -59,8 +67,9 @@
padding-bottom: 1rem;
}
#completions > div { max-height: calc(30 * var(--option-height));
min-height: calc(10 * var(--option-height));
#completions > div {
max-height: calc(20 * var(--tridactyl-cmplt-option-height));
min-height: calc(10 * var(--tridactyl-cmplt-option-height));
}
/* COMPLETIONS */
@ -118,6 +127,36 @@
padding-bottom: 0.2rem;
}
:root #completions .HistoryCompletionSource {
max-height: unset;
min-height: unset;
}
:root #completions .HistoryCompletionSource table {
width: 100%;
font-size: 9pt;
border-spacing: 0;
table-layout: fixed;
}
/* redundancy 2: redundancy 2: more redundancy */
:root #completions .BmarkCompletionSource {
max-height: unset;
min-height: unset;
}
:root #completions .BufferCompletionSource table {
width: unset;
font-size: unset;
border-spacing: unset;
table-layout: unset;
}
:root #completions table tr {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#cmdline_iframe { position: fixed !important;
bottom: unset;
top: 25% !important;
@ -125,7 +164,7 @@
z-index: 2147483647 !important;
width: 80% !important;
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px !important;
border-radius: 30px !important;
border-radius: 25px !important;
/*filter: blur(15px);*/
}
@ -154,7 +193,7 @@
/* border-color: yellow !important; */
/* } */
body {
color: var(--tridactyl-bg);
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px !important;
}
/* body { */
/* color: var(--tridactyl-bg); */
/* box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px !important; */
/* } */