Some more stying and added a build step
Some checks failed
Build / build (push) Failing after 3m25s

This commit is contained in:
Leon Mika 2025-09-07 09:32:53 +10:00
parent 41daf7cfc9
commit 6a06faee7d
4 changed files with 58 additions and 8 deletions

View file

@ -15,6 +15,18 @@ dialog#command-dialog {
transform: translate(-50%, -50%);
padding: 0;
/* Frosted glass effect */
background: rgba(225, 225, 225, 0.38);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
/* Subtle grey border and rounded corners */
border: 1px solid rgba(169, 169, 169, 0.3);
border-radius: 12px;
/* Add subtle shadow for depth */
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
dialog#command-dialog .dialog-body {
@ -24,7 +36,6 @@ dialog#command-dialog .dialog-body {
}
dialog#command-dialog .command-input {
background-color: #EEEEEE;
padding: 10px;
}
@ -33,7 +44,12 @@ dialog#command-dialog input {
border: none;
text-decoration: none;
outline: none;
font-size: 1.5em;
font-size: 1.3em;
background-color: transparent;
font-weight: normal;
}
dialog::backdrop {
background-color: transparent;
}
@ -41,13 +57,16 @@ dialog#command-dialog select {
flex-grow: 1;
flex-shrink: 1;
border: none;
background-color: transparent;
-webkit-appearance: none;
appearance: none;
font-size: 1.5em;
font-size: 1.3em;
}
option {
background-color: #FFFFFF;
dialog#command-dialog option {
background-color: transparent;
line-height: 3.0em;
}
option .option-label {