/* ==========================================================================
AI Connector Window Styles
Imports common styles and adds connector-specific customizations
========================================================================== */
@import url("common/_base.uss");
@import url("common/_typography.uss");
@import url("common/_buttons.uss");
@import url("common/_forms.uss");
@import url("common/_status-indicators.uss");
@import url("common/_animations.uss");
@import url("common/_foldout.uss");
/* ==========================================================================
Toggle Text Button - Toggles styled as text buttons
========================================================================== */
.toggle-text-button {
flex-direction: row-reverse;
flex-grow: 0;
flex-shrink: 0;
margin: 2px 2px;
min-width: 40px;
}
.toggle-text-button > .unity-toggle__input {
display: none;
width: 0;
height: 0;
min-width: 0;
min-height: 0;
max-width: 0;
max-height: 0;
padding: 0;
margin: 0;
border-width: 0;
}
.toggle-text-button .unity-toggle__checkmark {
display: none;
width: 0;
height: 0;
min-width: 0;
min-height: 0;
max-width: 0;
max-height: 0;
padding: 0;
margin: 0;
border-width: 0;
}
.toggle-text-button > .unity-label {
color: rgb(140, 140, 140);
font-size: 12px;
padding: 4px 8px;
margin: 0;
border-radius: 4px;
min-width: 40px;
background-color: rgba(255, 255, 255, 0.05);
transition-duration: 200ms;
-unity-text-align: middle-left;
}
.toggle-text-button:hover > .unity-label {
color: rgb(180, 180, 180);
background-color: rgba(255, 255, 255, 0.1);
transition-duration: 200ms;
}
.toggle-text-button:checked > .unity-label {
color: rgb(175, 232, 230);
background-color: rgba(175, 232, 230, 0.1);
}
.toggle-text-button:checked:hover > .unity-label {
color: rgb(200, 245, 243);
background-color: rgba(190, 232, 230, 0.1);
}
/* ==========================================================================
Agent Icon - Icon displayed next to agent name in configuration panels
========================================================================== */
.agent-icon {
width: 32px;
height: 32px;
min-width: 32px;
min-height: 32px;
margin-right: 8px;
margin-bottom: 6px;
flex-shrink: 0;
}
/* ==========================================================================
Connection Timeline - Vertical TODO-like list with connected points
========================================================================== */
.connection-timeline {
flex-direction: column;
margin-top: 0;
margin-bottom: 0;
padding-left: 4px;
}
.timeline-point {
flex-direction: row;
align-items: stretch;
min-height: 40px;
}
.timeline-indicator {
flex-direction: column;
align-items: center;
justify-content: center;
width: 20px;
margin-right: 4px;
position: relative;
}
.timeline-indicator > .status-indicator-circle {
flex-shrink: 0;
margin-right: 0;
}
.timeline-line {
position: absolute;
width: 2px;
top: 50%;
bottom: -10px;
left: 9px;
margin-top: 10px;
background-color: rgb(80, 80, 80);
}
.timeline-point-last .timeline-line {
display: none;
}
.timeline-content {
flex-direction: row;
flex-grow: 1;
align-items: center;
justify-content: space-between;
/* padding-bottom: 16px; */
}
.timeline-point-last .timeline-content {
padding-bottom: 0;
}
.timeline-label {
flex-grow: 1;
-unity-text-align: middle-left;
color: rgb(200, 200, 200);
font-size: 13px;
}
.timeline-btn {
flex-shrink: 0;
min-width: 60px;
margin-top: 0;
margin-bottom: 0;
}