2025-09-06 00:26:50 +00:00
|
|
|
.cm-editor {
|
|
|
|
|
height: 100%;
|
2025-09-06 01:26:54 +00:00
|
|
|
font-size: 1.1em;
|
2025-09-06 00:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog#command-dialog {
|
|
|
|
|
width: 450px;
|
|
|
|
|
height: 400px;
|
|
|
|
|
max-height: 80%;
|
|
|
|
|
max-width: 50%;
|
|
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
|
|
|
|
padding: 0;
|
2025-09-06 23:32:53 +00:00
|
|
|
|
|
|
|
|
/* Frosted glass effect */
|
|
|
|
|
background: rgba(225, 225, 225, 0.38);
|
2025-09-07 00:17:38 +00:00
|
|
|
backdrop-filter: blur(15px);
|
|
|
|
|
-webkit-backdrop-filter: blur(15px);
|
2025-09-06 23:32:53 +00:00
|
|
|
|
|
|
|
|
/* 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);
|
2025-09-06 00:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog#command-dialog .dialog-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog#command-dialog .command-input {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog#command-dialog input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: none;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
outline: none;
|
2025-09-06 23:32:53 +00:00
|
|
|
font-size: 1.3em;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog::backdrop {
|
2025-09-06 00:26:50 +00:00
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog#command-dialog select {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
border: none;
|
2025-09-06 23:32:53 +00:00
|
|
|
background-color: transparent;
|
2025-09-06 00:26:50 +00:00
|
|
|
|
2025-09-06 23:32:53 +00:00
|
|
|
-webkit-appearance: none;
|
2025-09-06 00:26:50 +00:00
|
|
|
appearance: none;
|
2025-09-06 23:32:53 +00:00
|
|
|
font-size: 1.3em;
|
2025-09-06 00:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
2025-09-06 23:32:53 +00:00
|
|
|
dialog#command-dialog option {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
line-height: 3.0em;
|
2025-09-06 00:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
option .option-label {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|