botui/ui/suite/css/apps-extended.css

1124 lines
22 KiB
CSS
Raw Normal View History

/* General Bots Suite - Extended App Styles */
/* Dashboard layout, intents, cards, filters, and progress elements */
/* Designed for the Sentient theme (dark with neon lime accents) */
2025-12-03 18:42:22 -03:00
/* ============================================ */
/* LAYOUT SYSTEM */
/* ============================================ */
.dashboard-layout {
2025-12-03 18:42:22 -03:00
display: grid;
grid-template-columns: 1fr 400px;
gap: 24px;
padding: 24px;
min-height: calc(100vh - 64px);
background: var(--bg, #0a0a0a);
}
.dashboard-layout.full-width {
grid-template-columns: 1fr;
2025-12-03 18:42:22 -03:00
}
.dashboard-main {
display: flex;
flex-direction: column;
gap: 24px;
min-width: 0;
2025-12-03 18:42:22 -03:00
}
.dashboard-sidebar {
2025-12-03 18:42:22 -03:00
display: flex;
flex-direction: column;
gap: 24px;
min-width: 0;
}
/* ============================================ */
/* DASHBOARD HEADER */
/* ============================================ */
.dashboard-header {
display: flex;
justify-content: space-between;
2025-12-03 18:42:22 -03:00
align-items: center;
flex-wrap: wrap;
gap: 16px;
}
.dashboard-title {
display: flex;
align-items: center;
gap: 12px;
}
.dashboard-title h1 {
font-size: 24px;
font-weight: 700;
color: var(--text, #ffffff);
margin: 0;
}
.dashboard-actions {
display: flex;
align-items: center;
gap: 12px;
}
/* New Intent Button */
.btn-new-intent {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: var(--accent, #d4f505);
color: #000000;
border: none;
2025-12-03 18:42:22 -03:00
border-radius: 8px;
font-size: 14px;
font-weight: 600;
2025-12-03 18:42:22 -03:00
cursor: pointer;
transition: all 0.2s ease;
}
.btn-new-intent:hover {
background: var(--accent-hover, #bfdd04);
box-shadow: 0 0 20px rgba(212, 245, 5, 0.3);
}
.btn-new-intent svg {
width: 16px;
height: 16px;
}
/* ============================================ */
/* STATUS FILTERS */
/* ============================================ */
.status-filters {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
padding: 16px 0;
border-bottom: 1px solid var(--border, #2a2a2a);
}
.status-filter {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
2025-12-03 18:42:22 -03:00
background: transparent;
border: 1px solid var(--border, #2a2a2a);
border-radius: 20px;
color: var(--text-secondary, #888888);
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
2025-12-03 18:42:22 -03:00
}
.status-filter:hover {
background: var(--surface-hover, #1e1e1e);
color: var(--text, #ffffff);
border-color: var(--text-secondary, #888888);
2025-12-03 18:42:22 -03:00
}
.status-filter.active {
background: var(--accent, #d4f505);
color: #000000;
border-color: var(--accent, #d4f505);
2025-12-03 18:42:22 -03:00
}
.status-filter .icon {
display: flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
2025-12-03 18:42:22 -03:00
}
.status-filter .count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 22px;
height: 22px;
padding: 0 6px;
background: var(--surface-hover, #1e1e1e);
border-radius: 11px;
font-size: 12px;
font-weight: 600;
2025-12-03 18:42:22 -03:00
}
.status-filter.active .count {
background: rgba(0, 0, 0, 0.2);
color: #000000;
2025-12-03 18:42:22 -03:00
}
/* Time saved indicator */
.time-saved-indicator {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: rgba(212, 245, 5, 0.1);
border-radius: 20px;
color: var(--accent, #d4f505);
font-size: 14px;
font-weight: 600;
margin-left: auto;
}
.time-saved-indicator .icon {
width: 16px;
height: 16px;
}
/* ============================================ */
/* INTENT CARDS */
/* ============================================ */
.intents-grid {
display: flex;
flex-direction: column;
gap: 16px;
}
.intent-card {
background: var(--surface, #161616);
border: 1px solid var(--border, #2a2a2a);
border-radius: 12px;
padding: 20px;
transition: all 0.2s ease;
cursor: pointer;
}
.intent-card:hover {
border-color: rgba(212, 245, 5, 0.4);
}
.intent-card.selected {
border-color: var(--accent, #d4f505);
box-shadow: 0 0 20px rgba(212, 245, 5, 0.15);
}
/* Intent Card Header */
.intent-card-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 16px;
}
.intent-title {
font-size: 16px;
font-weight: 600;
color: var(--text, #ffffff);
margin: 0;
}
.intent-title a {
color: inherit;
text-decoration: none;
}
.intent-title a:hover {
text-decoration: underline;
}
/* Intent Progress */
.intent-progress {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.progress-bar {
flex: 1;
height: 8px;
background: var(--surface-hover, #1e1e1e);
border-radius: 4px;
2025-12-03 18:42:22 -03:00
overflow: hidden;
}
.progress-bar-fill {
height: 100%;
background: var(--accent, #d4f505);
border-radius: 4px;
transition: width 0.3s ease;
}
.progress-bar-fill.warning {
background: var(--warning, #f59e0b);
}
.progress-bar-fill.danger {
background: var(--error, #ef4444);
}
.progress-text {
font-size: 14px;
font-weight: 600;
color: var(--accent, #d4f505);
white-space: nowrap;
}
.progress-text.warning {
color: var(--warning, #f59e0b);
}
.progress-text.danger {
color: var(--error, #ef4444);
}
/* Intent Status Line */
.intent-status-line {
display: flex;
align-items: center;
gap: 8px;
2025-12-03 18:42:22 -03:00
margin-bottom: 12px;
}
.intent-status-label {
font-size: 12px;
2025-12-03 18:42:22 -03:00
font-weight: 600;
color: var(--text-secondary, #888888);
2025-12-03 18:42:22 -03:00
text-transform: uppercase;
letter-spacing: 0.5px;
}
.intent-status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 10px;
border-radius: 12px;
font-size: 12px;
font-weight: 500;
2025-12-03 18:42:22 -03:00
}
.intent-status-badge.active {
background: rgba(212, 245, 5, 0.15);
color: var(--accent, #d4f505);
2025-12-03 18:42:22 -03:00
}
.intent-status-badge.awaiting {
background: rgba(245, 158, 11, 0.15);
color: var(--warning, #f59e0b);
}
.intent-status-badge.paused {
background: var(--surface-hover, #1e1e1e);
color: var(--text-secondary, #888888);
}
.intent-status-badge.complete {
background: rgba(34, 197, 94, 0.15);
color: var(--success, #22c55e);
}
.intent-status-badge.blocked {
background: rgba(239, 68, 68, 0.15);
color: var(--error, #ef4444);
}
/* Intent Description */
.intent-description {
font-size: 14px;
color: var(--text-secondary, #888888);
margin-bottom: 12px;
line-height: 1.5;
}
.intent-description.pending {
color: var(--text-tertiary, #666666);
font-style: italic;
}
/* Intent Meta Tags */
.intent-meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 16px;
}
.intent-meta-tag {
display: inline-flex;
align-items: center;
padding: 6px 12px;
background: var(--surface-hover, #1e1e1e);
border-radius: 8px;
font-size: 13px;
color: var(--text-secondary, #888888);
}
.intent-meta-tag.highlight {
background: rgba(212, 245, 5, 0.1);
color: var(--accent, #d4f505);
}
.intent-meta-tag .icon {
margin-right: 6px;
}
/* Intent Health */
.intent-health {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
}
.intent-health.good {
background: rgba(212, 245, 5, 0.1);
color: var(--accent, #d4f505);
}
.intent-health.warning {
background: rgba(245, 158, 11, 0.15);
color: var(--warning, #f59e0b);
}
.intent-health.bad {
background: rgba(239, 68, 68, 0.15);
color: var(--error, #ef4444);
}
/* Detailed View Link */
.intent-detailed-link {
display: block;
text-align: center;
padding: 10px;
margin-top: 12px;
color: var(--text-secondary, #888888);
font-size: 13px;
text-decoration: underline;
cursor: pointer;
}
.intent-detailed-link:hover {
color: var(--text, #ffffff);
}
/* ============================================ */
/* DETAIL PANEL (RIGHT SIDEBAR) */
/* ============================================ */
.detail-panel {
background: var(--surface, #161616);
border: 1px solid var(--border, #2a2a2a);
border-radius: 12px;
overflow: hidden;
}
.detail-panel-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
border-bottom: 1px solid var(--border, #2a2a2a);
}
.detail-panel-header h2 {
font-size: 18px;
font-weight: 600;
color: var(--text, #ffffff);
margin: 0;
}
.detail-panel-actions {
display: flex;
gap: 8px;
}
.detail-panel-nav {
display: flex;
align-items: center;
gap: 8px;
}
.nav-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
2025-12-03 18:42:22 -03:00
background: transparent;
border: 1px solid var(--border, #2a2a2a);
border-radius: 6px;
color: var(--text-secondary, #888888);
cursor: pointer;
transition: all 0.2s ease;
}
.nav-btn:hover {
background: var(--surface-hover, #1e1e1e);
color: var(--text, #ffffff);
}
.nav-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
/* Detail Panel Status */
.detail-status {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 20px;
background: var(--surface-hover, #1e1e1e);
border-bottom: 1px solid var(--border, #2a2a2a);
2025-12-03 18:42:22 -03:00
}
.detail-status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 10px;
background: rgba(245, 158, 11, 0.15);
color: var(--warning, #f59e0b);
border-radius: 12px;
font-size: 12px;
font-weight: 500;
}
.detail-progress-info {
display: flex;
align-items: center;
gap: 12px;
margin-left: auto;
}
.detail-progress-text {
font-size: 14px;
font-weight: 600;
color: var(--accent, #d4f505);
}
.detail-progress-bar {
width: 100px;
height: 6px;
background: var(--border, #2a2a2a);
2025-12-03 18:42:22 -03:00
border-radius: 3px;
overflow: hidden;
2025-12-03 18:42:22 -03:00
}
.detail-progress-bar-fill {
height: 100%;
background: var(--accent, #d4f505);
border-radius: 3px;
2025-12-03 18:42:22 -03:00
}
/* Action Button in header */
.action-btn-pause {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background: transparent;
border: 1px solid var(--border, #2a2a2a);
border-radius: 8px;
color: var(--text-secondary, #888888);
cursor: pointer;
transition: all 0.2s ease;
}
.action-btn-pause:hover {
background: var(--surface-hover, #1e1e1e);
color: var(--warning, #f59e0b);
border-color: var(--warning, #f59e0b);
}
/* ============================================ */
/* DECISION REQUIRED PANEL */
/* ============================================ */
.decision-panel {
margin: 20px;
padding: 20px;
background: var(--surface-hover, #1e1e1e);
border: 1px solid var(--accent, #d4f505);
border-radius: 12px;
box-shadow: 0 0 30px rgba(212, 245, 5, 0.1);
}
.decision-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
}
.decision-icon {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
color: var(--accent, #d4f505);
}
.decision-label {
font-size: 12px;
font-weight: 700;
color: var(--accent, #d4f505);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.decision-title {
font-size: 16px;
font-weight: 500;
color: var(--text, #ffffff);
margin-bottom: 16px;
}
.decision-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.decision-actions {
display: flex;
flex-direction: column;
gap: 12px;
}
.decision-btn {
padding: 12px 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.decision-btn-primary {
background: var(--accent, #d4f505);
color: #000000;
border: none;
}
.decision-btn-primary:hover {
background: var(--accent-hover, #bfdd04);
box-shadow: 0 0 15px rgba(212, 245, 5, 0.3);
}
.decision-btn-secondary {
background: transparent;
color: var(--text, #ffffff);
border: 1px solid var(--border, #2a2a2a);
}
.decision-btn-secondary:hover {
background: var(--surface, #161616);
border-color: var(--text-secondary, #888888);
}
.decision-context {
background: var(--surface, #161616);
2025-12-03 18:42:22 -03:00
border-radius: 8px;
padding: 16px;
}
.decision-context-label {
font-size: 12px;
2025-12-03 18:42:22 -03:00
font-weight: 600;
color: var(--text-secondary, #888888);
margin-bottom: 8px;
}
.decision-context-text {
font-size: 14px;
color: var(--text-secondary, #888888);
line-height: 1.6;
}
/* ============================================ */
/* STATUS SECTION */
/* ============================================ */
.status-section {
padding: 20px;
border-bottom: 1px solid var(--border, #2a2a2a);
}
.status-section-title {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary, #888888);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
}
.status-items {
display: flex;
flex-direction: column;
gap: 12px;
}
.status-item {
display: flex;
align-items: center;
gap: 12px;
}
.status-item-icon {
2025-12-03 18:42:22 -03:00
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
color: var(--accent, #d4f505);
2025-12-03 18:42:22 -03:00
}
.status-item-icon.warning {
color: var(--warning, #f59e0b);
2025-12-03 18:42:22 -03:00
}
.status-item-text {
flex: 1;
font-size: 14px;
color: var(--text, #ffffff);
2025-12-03 18:42:22 -03:00
}
.status-item-meta {
font-size: 12px;
color: var(--text-tertiary, #666666);
2025-12-03 18:42:22 -03:00
}
.status-runtime {
display: flex;
gap: 16px;
margin-left: auto;
}
2025-12-03 18:42:22 -03:00
.runtime-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: var(--text-secondary, #888888);
}
2025-12-03 18:42:22 -03:00
.runtime-item.active {
color: var(--accent, #d4f505);
}
2025-12-03 18:42:22 -03:00
/* ============================================ */
/* PROGRESS LOG */
/* ============================================ */
.progress-log {
padding: 20px;
}
.progress-log-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
2025-12-03 18:42:22 -03:00
}
.progress-log-title {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary, #888888);
text-transform: uppercase;
letter-spacing: 0.5px;
2025-12-03 18:42:22 -03:00
}
.progress-log-toggle {
font-size: 13px;
color: var(--text-secondary, #888888);
background: none;
border: none;
cursor: pointer;
text-decoration: underline;
}
.progress-log-toggle:hover {
color: var(--text, #ffffff);
}
/* Progress Log Items */
.progress-log-items {
2025-12-03 18:42:22 -03:00
display: flex;
flex-direction: column;
gap: 16px;
}
.progress-log-item {
display: flex;
gap: 12px;
padding: 16px;
background: var(--surface-hover, #1e1e1e);
border-radius: 10px;
2025-12-03 18:42:22 -03:00
}
.progress-log-item-icon {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
2025-12-03 18:42:22 -03:00
flex-shrink: 0;
}
.progress-log-item-content {
flex: 1;
min-width: 0;
2025-12-03 18:42:22 -03:00
}
.progress-log-item-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
2025-12-03 18:42:22 -03:00
}
.progress-log-item-title {
font-size: 14px;
font-weight: 500;
color: var(--text, #ffffff);
}
.progress-log-item-title a {
color: var(--text-secondary, #888888);
text-decoration: underline;
font-weight: 400;
}
.progress-log-item-step {
display: inline-flex;
align-items: center;
padding: 4px 10px;
background: var(--accent, #d4f505);
color: #000000;
border-radius: 10px;
font-size: 12px;
font-weight: 600;
2025-12-03 18:42:22 -03:00
}
.progress-log-item-step.complete {
background: var(--success, #22c55e);
color: #ffffff;
2025-12-03 18:42:22 -03:00
}
.progress-log-item-step.pending {
background: var(--surface, #161616);
color: var(--text-secondary, #888888);
}
.progress-log-sub-items {
display: flex;
flex-direction: column;
gap: 8px;
2025-12-03 18:42:22 -03:00
margin-top: 12px;
}
.progress-log-sub-item {
2025-12-03 18:42:22 -03:00
display: flex;
align-items: center;
gap: 8px;
padding-left: 8px;
}
.progress-log-sub-item-icon {
width: 16px;
height: 16px;
display: flex;
align-items: center;
2025-12-03 18:42:22 -03:00
justify-content: center;
color: var(--accent, #d4f505);
font-size: 12px;
2025-12-03 18:42:22 -03:00
}
.progress-log-sub-item-text {
flex: 1;
font-size: 13px;
color: var(--text-secondary, #888888);
}
.progress-log-sub-item-meta {
display: flex;
align-items: center;
gap: 8px;
2025-12-03 18:42:22 -03:00
font-size: 12px;
color: var(--text-tertiary, #666666);
}
.progress-log-sub-item-meta .check {
color: var(--success, #22c55e);
}
/* ============================================ */
/* SEARCH BAR */
/* ============================================ */
.search-bar {
2025-12-03 18:42:22 -03:00
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
background: var(--surface, #161616);
border: 1px solid var(--border, #2a2a2a);
border-radius: 10px;
transition: all 0.2s ease;
2025-12-03 18:42:22 -03:00
}
.search-bar:focus-within {
border-color: var(--accent, #d4f505);
box-shadow: 0 0 0 3px rgba(212, 245, 5, 0.1);
2025-12-03 18:42:22 -03:00
}
.search-bar-icon {
color: var(--text-tertiary, #666666);
flex-shrink: 0;
2025-12-03 18:42:22 -03:00
}
.search-bar-input {
flex: 1;
background: transparent;
border: none;
color: var(--text, #ffffff);
font-size: 14px;
outline: none;
}
2025-12-03 18:42:22 -03:00
.search-bar-input::placeholder {
color: var(--text-tertiary, #666666);
}
/* ============================================ */
/* PROFILE SELECTOR */
/* ============================================ */
.profile-selector {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
background: var(--surface, #161616);
border: 1px solid var(--border, #2a2a2a);
border-radius: 8px;
color: var(--text, #ffffff);
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
2025-12-03 18:42:22 -03:00
}
.profile-selector:hover {
background: var(--surface-hover, #1e1e1e);
2025-12-03 18:42:22 -03:00
}
.profile-avatar {
width: 24px;
height: 24px;
border-radius: 6px;
background: var(--accent, #d4f505);
color: #000000;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 600;
2025-12-03 18:42:22 -03:00
}
.profile-name {
font-weight: 500;
2025-12-03 18:42:22 -03:00
}
.profile-dropdown-icon {
color: var(--text-tertiary, #666666);
margin-left: 4px;
2025-12-03 18:42:22 -03:00
}
/* ============================================ */
/* NOTIFICATION INDICATOR */
/* ============================================ */
.notification-indicator {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background: transparent;
border: 1px solid var(--border, #2a2a2a);
border-radius: 8px;
color: var(--text-secondary, #888888);
cursor: pointer;
transition: all 0.2s ease;
2025-12-03 18:42:22 -03:00
}
.notification-indicator:hover {
background: var(--surface-hover, #1e1e1e);
color: var(--text, #ffffff);
2025-12-03 18:42:22 -03:00
}
.notification-count {
2025-12-03 18:42:22 -03:00
position: absolute;
top: -4px;
right: -4px;
min-width: 18px;
height: 18px;
padding: 0 5px;
background: var(--accent, #d4f505);
color: #000000;
border-radius: 9px;
font-size: 11px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
2025-12-03 18:42:22 -03:00
}
/* ============================================ */
/* EMPTY STATE */
/* ============================================ */
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 40px;
text-align: center;
}
.empty-state-icon {
width: 64px;
height: 64px;
margin-bottom: 20px;
color: var(--text-tertiary, #666666);
}
.empty-state-title {
font-size: 18px;
font-weight: 600;
color: var(--text, #ffffff);
margin-bottom: 8px;
}
.empty-state-message {
font-size: 14px;
color: var(--text-secondary, #888888);
max-width: 300px;
line-height: 1.5;
margin-bottom: 20px;
}
.empty-state-action {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: var(--accent, #d4f505);
color: #000000;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.empty-state-action:hover {
background: var(--accent-hover, #bfdd04);
}
/* ============================================ */
/* RESPONSIVE ADJUSTMENTS */
/* ============================================ */
@media (max-width: 1200px) {
.dashboard-layout {
grid-template-columns: 1fr;
}
.dashboard-sidebar {
order: -1;
}
.decision-content {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.dashboard-layout {
padding: 16px;
gap: 16px;
}
.status-filters {
gap: 8px;
}
.status-filter {
padding: 6px 12px;
font-size: 13px;
}
.time-saved-indicator {
width: 100%;
justify-content: center;
}
.intent-card {
padding: 16px;
}
.intent-meta {
gap: 6px;
}
.intent-meta-tag {
padding: 4px 10px;
font-size: 12px;
}
.detail-panel {
border-radius: 0;
margin: 0 -16px;
}
}
/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 0 0 0 rgba(212, 245, 5, 0.4);
}
50% {
box-shadow: 0 0 0 8px transparent;
}
}
.pulse-glow {
animation: pulse-glow 2s infinite;
}
@keyframes fade-in {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);