File size: 1,584 Bytes
6e38ce1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | /* RunView component styles */
.group-message {
border-left: 2px solid #3b82f6;
padding-left: 8px;
margin-top: 2px;
}
.overflow-x-hidden {
overflow-x: hidden;
}
/* Chat view styles */
.conversation-thread {
padding: 0 8px;
}
/* Step styling */
.step-group {
position: relative;
}
.step-content {
border-color: var(--color-border-secondary);
padding-top: 8px;
padding-bottom: 8px;
}
/* User message styling within steps */
.step-message {
margin-bottom: 12px;
}
.step-message:last-child {
margin-bottom: 0;
}
/* User message indicator in steps */
.user-message-indicator {
width: 16px;
height: 16px;
background-color: var(--color-accent);
border-radius: 50%;
position: absolute;
right: 12px;
top: 12px;
}
/* Status styling */
.step-status-completed {
border-left-color: #4caf50;
}
.step-status-current {
border-left-color: #2196f3;
}
.step-status-failed {
border-left-color: #ff5722;
}
.step-status-upcoming {
border-left-color: #9e9e9e;
opacity: 0.7;
}
/* Enhanced step content */
.enhanced-step-content {
transition: all 0.3s ease;
}
/* Version controls */
.version-controls {
display: flex;
align-items: center;
}
.version-pill {
font-size: 12px;
padding: 2px 8px;
border-radius: 10px;
background-color: var(--color-bg-secondary);
}
/* User message within step */
.step-user-message {
position: relative;
margin-left: 16px;
}
.step-user-message::before {
content: "";
position: absolute;
left: -16px;
top: 50%;
height: 1px;
width: 10px;
background-color: var(--color-border-secondary);
}
|