agentgui 1.0.979 → 1.0.980
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3128,6 +3128,12 @@
|
|
|
3128
3128
|
Accessibility Enhancements
|
|
3129
3129
|
-------------------------------------------------------------- */
|
|
3130
3130
|
|
|
3131
|
+
/* Base focus-visible: 2px ring + 2px offset clears dark bg-3 surfaces (WCAG 1.4.11) */
|
|
3132
|
+
.ds-247420 :focus-visible {
|
|
3133
|
+
outline: 2px solid var(--accent);
|
|
3134
|
+
outline-offset: 2px;
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3131
3137
|
/* Enhanced focus-visible for all interactive elements */
|
|
3132
3138
|
.ds-247420[role="button"]:focus-visible,
|
|
3133
3139
|
.ds-247420[role="link"]:focus-visible,
|
|
@@ -5729,6 +5735,14 @@
|
|
|
5729
5735
|
.ds-247420 .agentchat-cwd-text { max-width: 42vw; }
|
|
5730
5736
|
.ds-247420 .agentchat-controls { gap: .4em; }
|
|
5731
5737
|
}
|
|
5738
|
+
/* 360px: buttons fill full width so they remain tappable at the narrowest phones */
|
|
5739
|
+
@media (max-width: 400px) {
|
|
5740
|
+
.ds-247420 .agentchat-controls .btn, .ds-247420 .agentchat-controls .btn-primary, .ds-247420 .agentchat-controls button { flex: 1 1 100%; }
|
|
5741
|
+
}
|
|
5742
|
+
/* Coarse-pointer (touch): raise cwd button to 44px minimum tap target */
|
|
5743
|
+
@media (pointer: coarse) {
|
|
5744
|
+
.ds-247420 .agentchat-cwd-btn { min-height: 44px; }
|
|
5745
|
+
}
|
|
5732
5746
|
|
|
5733
5747
|
/* ----------------------------------------------------------------------------
|
|
5734
5748
|
Global status disc — a CSS-drawn status indicator (no text glyph) usable
|