anentrypoint-design 0.0.85 → 0.0.87

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/app-shell.css CHANGED
@@ -2021,3 +2021,18 @@ tr.clickable:hover td { background: var(--panel-hover); }
2021
2021
  .fd-cfg-details { margin-top: 12px; padding: 8px 0; }
2022
2022
  .fd-cfg-details > summary { cursor: pointer; padding: 6px 0; font-weight: 500; user-select: none; }
2023
2023
  .fd-cfg-details > summary:hover { color: var(--accent, #FFA500); }
2024
+
2025
+ /* freddie voice page */
2026
+ .fd-voice-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding: 4px 0 10px; }
2027
+ .fd-voice-partial { font-style: italic; color: var(--panel-text-2); font-family: var(--ff-mono); font-size: 12.5px; }
2028
+ .fd-voice-log { display: flex; flex-direction: column; gap: 4px; max-height: 320px; overflow-y: auto; padding: 8px; background: var(--panel-2); border-radius: 10px; }
2029
+ .fd-voice-line { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 4px 8px; border-radius: 6px; }
2030
+ .fd-voice-line:nth-child(even) { background: var(--panel-3); }
2031
+ .fd-voice-ts { font-family: var(--ff-mono); font-size: 11px; color: var(--panel-text-3); }
2032
+ .fd-voice-text { line-height: 1.5; }
2033
+ .fd-voice-tts { display: flex; flex-direction: column; gap: 8px; }
2034
+ .fd-voice-tts textarea { padding: 8px 10px; font-family: var(--ff-ui); font-size: 13.5px; background: var(--panel-2); color: var(--panel-text); border: 0; border-radius: 10px; resize: vertical; }
2035
+ .fd-voice-tts textarea:focus { outline: 2px solid var(--mascot, #F07AA8); outline-offset: 1px; }
2036
+
2037
+ /* freddie page-error pre — replaces the inline style from app.js */
2038
+ .fd-page-error { max-height: 200px; overflow-y: auto; }