UI - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: перенос Voice Tasker в нижний dock

This commit is contained in:
DCCONSTRUCTIONS
2026-04-27 21:19:36 +03:00
parent 6da9818826
commit efa357c260
3 changed files with 62 additions and 17 deletions
+28
View File
@@ -359,6 +359,34 @@
backdrop-filter: blur(34px);
}
.nodedc-bottom-dock-voice-slot {
display: flex;
flex: 0 0 auto;
align-items: center;
justify-content: center;
min-width: 0;
}
.nodedc-bottom-dock-voice-button {
display: grid;
height: 2rem;
width: 2rem;
place-items: center;
border: 0 !important;
border-radius: 999px;
background: transparent;
color: rgb(var(--nodedc-accent-rgb));
outline: none !important;
box-shadow: none !important;
transition:
color 160ms ease,
transform 160ms ease;
}
.nodedc-bottom-dock-voice-button:hover {
color: rgb(var(--nodedc-card-active-rgb));
}
.nodedc-bottom-dock-aware-padding {
padding-bottom: calc(var(--nodedc-quick-add-reserve, 2.5rem) + 0.5rem);
}