subtle aesthetic updates
This commit is contained in:
@@ -273,6 +273,35 @@
|
||||
box-shadow: 0 0 10px var(--terminal-amber);
|
||||
}
|
||||
|
||||
.metadata-select:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.metadata-select:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Blinking cursor effect for active inputs */
|
||||
.title-input:not(:disabled)::after,
|
||||
textarea[data-field="description"]:not(:disabled)::after {
|
||||
content: '█';
|
||||
color: var(--terminal-green);
|
||||
animation: blink-cursor 1s step-end infinite;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
@keyframes blink-cursor {
|
||||
0%, 50% {
|
||||
opacity: 1;
|
||||
}
|
||||
51%, 100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile: Stack metadata fields */
|
||||
@media (max-width: 768px) {
|
||||
.ticket-metadata-fields {
|
||||
|
||||
Reference in New Issue
Block a user