Session issues fixed: - Removed auto-draft-only gate for showing unassigned sessions on new posts (now shows on any post that has no linked sessions) - Auto-link unassigned session to current post when user opens it - Added beforeunload/pagehide flush to persist messages before page close (prevents data loss from 700ms debounce not firing) - Added warning log when session loads with 0 messages for debugging UI fix: - Override WP editor h3 shrinkage (11px/uppercase → 15px/normal/white) - Fix h2/h4-h6 headings in response content for dark theme readability Outline error messages: - Separate empty response from parse failure with distinct actionable messages - Show model name + token count on empty response for debugging - Reassure user that parse failures are usually one-time issues
4812 lines
90 KiB
CSS
4812 lines
90 KiB
CSS
/**
|
|
* WP Agentic Writer - Sidebar Styles
|
|
*
|
|
* @package WP_Agentic_Writer
|
|
*/
|
|
|
|
.is-pressed[aria-controls="wp-agentic-writer:wp-agentic-writer"] img {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.interface-complementary-area__fill:has(#wp-agentic-writer\:wp-agentic-writer),
|
|
#wp-agentic-writer\:wp-agentic-writer {
|
|
width: 30vw !important;
|
|
height: 100% !important;
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
#wp-agentic-writer\:wp-agentic-writer .components-panel,
|
|
#wp-agentic-writer\:wp-agentic-writer .components-panel__body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
background: #f8fafc;
|
|
/* Lighter, cleaner background */
|
|
}
|
|
|
|
#wp-agentic-writer\:wp-agentic-writer .components-panel__body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.interface-complementary-area__fill:has(#wp-agentic-writer\:wp-agentic-writer),
|
|
#wp-agentic-writer\:wp-agentic-writer svg {
|
|
margin-bottom: -3px;
|
|
}
|
|
|
|
.components-tooltip img {
|
|
display: none;
|
|
}
|
|
|
|
/* ===========================
|
|
TAB NAVIGATION - DARK MINIMAL
|
|
=========================== */
|
|
.wpaw-tabs {
|
|
display: flex;
|
|
gap: 0;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
margin-bottom: 0;
|
|
background: #1d2227;
|
|
}
|
|
|
|
.wpaw-tab-btn {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
padding: 10px 12px;
|
|
background: transparent;
|
|
border: none;
|
|
border-bottom: 2px solid transparent;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #a7aaad;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
transition: color 0.1s ease, border-color 0.1s ease;
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
.wpaw-tab-btn:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-tab-btn.active {
|
|
color: #fff;
|
|
border-bottom-color: #2271b1;
|
|
}
|
|
|
|
.wpaw-tab-icon {
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.wpaw-tab-label {
|
|
line-height: 1;
|
|
}
|
|
|
|
/* ===========================
|
|
TAB CONTENT WRAPPER
|
|
=========================== */
|
|
.wpaw-tab-content-wrapper {
|
|
position: relative;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.wpaw-tab-content {
|
|
animation: fadeIn 0.3s ease;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(10px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* ===========================
|
|
CHAT TAB
|
|
=========================== */
|
|
.wpaw-chat-tab {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wpaw-chat-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wpaw-messages {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background: #1a1d23;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
border: 1px solid #2d3139;
|
|
}
|
|
|
|
.wpaw-messages-inner {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
padding: 15px;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.wpaw-messages-inner::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.wpaw-messages-inner::-webkit-scrollbar-track {
|
|
background: #1a1d23;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.wpaw-messages-inner::-webkit-scrollbar-thumb {
|
|
background: #3d4450;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.wpaw-messages-inner::-webkit-scrollbar-thumb:hover {
|
|
background: #525b6b;
|
|
}
|
|
|
|
.wpaw-input-area {
|
|
background: #1e2128;
|
|
padding: 12px;
|
|
border-radius: 0;
|
|
border: 1px solid #2d3139;
|
|
border-top: none;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.wpaw-input-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.wpaw-input-label {
|
|
font-size: 12px;
|
|
color: #8b95a5;
|
|
font-weight: 600;
|
|
letter-spacing: 0.02em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.wpaw-mode-select {
|
|
padding: 6px 8px;
|
|
border-radius: 6px;
|
|
border: 1px solid #3d4450;
|
|
background: #252830;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
color: #c8cdd5;
|
|
cursor: pointer;
|
|
transition: border-color 0.1s ease;
|
|
}
|
|
|
|
.wpaw-mode-select:hover {
|
|
border-color: #5b8def;
|
|
}
|
|
|
|
.wpaw-mode-select:focus {
|
|
outline: none;
|
|
border-color: #5b8def;
|
|
box-shadow: 0 0 0 1px #5b8def;
|
|
}
|
|
|
|
#agentMode {
|
|
background-color: #1d2227;
|
|
color: #bebebe;
|
|
font-weight: normal;
|
|
text-transform: capitalize;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#agentMode:active,
|
|
#agentMode:focus {
|
|
text-decoration: unset;
|
|
}
|
|
|
|
/* Messages */
|
|
.wpaw-message {
|
|
margin-bottom: 12px;
|
|
padding: 10px 12px;
|
|
border-radius: 8px;
|
|
background: #252830;
|
|
border: 1px solid #2d3139;
|
|
color: #e0e4ea;
|
|
animation: messageSlide 0.2s ease;
|
|
}
|
|
|
|
@keyframes messageSlide {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(5px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.wpaw-message-user {
|
|
background: #2a3040;
|
|
border-left: none;
|
|
margin-left: 0;
|
|
max-width: 80%;
|
|
margin-left: auto;
|
|
border-radius: 12px 12px 4px 12px;
|
|
border: 1px solid #3b4560;
|
|
color: #e8ecf2;
|
|
}
|
|
|
|
.wpaw-message-error {
|
|
background: rgba(220, 38, 38, 0.08);
|
|
border: 1px solid rgba(220, 38, 38, 0.25);
|
|
border-left: 3px solid #ef4444;
|
|
border-radius: 8px;
|
|
color: #fca5a5;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.wpaw-message-error .wpaw-error-title {
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
color: #fca5a5;
|
|
margin-bottom: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.wpaw-message-error .wpaw-error-detail {
|
|
font-size: 12px;
|
|
color: #d4a0a0;
|
|
line-height: 1.5;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.wpaw-message-error details {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.wpaw-message-error details summary {
|
|
font-size: 11px;
|
|
color: #e87171;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.wpaw-message-error details[open] summary {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-message-error button.is-secondary {
|
|
background: rgba(220, 38, 38, 0.15);
|
|
color: #fca5a5;
|
|
border: 1px solid rgba(220, 38, 38, 0.4) !important;
|
|
box-shadow: none !important;
|
|
border-radius: 6px;
|
|
margin-top: 8px;
|
|
font-size: 12px;
|
|
padding: 6px 14px;
|
|
transition: background 0.15s;
|
|
}
|
|
|
|
.wpaw-message-error button.is-secondary:hover {
|
|
background: rgba(220, 38, 38, 0.25);
|
|
}
|
|
|
|
/* Research message styling */
|
|
.wpaw-message[type="research"] {
|
|
background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
|
|
border: 1px solid #2d4a6a;
|
|
border-left: 4px solid #61dafb;
|
|
padding: 16px;
|
|
margin: 12px 0;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.wpaw-message[type="research"] .wpaw-message-content {
|
|
font-size: 13px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.wpaw-research-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #2d4a6a;
|
|
font-weight: 600;
|
|
color: #61dafb;
|
|
}
|
|
|
|
.wpaw-research-result {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
padding: 10px 12px;
|
|
margin: 8px 0;
|
|
border-radius: 6px;
|
|
border-left: 3px solid #4a90a4;
|
|
}
|
|
|
|
.wpaw-research-result-title {
|
|
font-weight: 600;
|
|
color: #fff;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.wpaw-research-result-url {
|
|
font-size: 11px;
|
|
color: #6ba3c7;
|
|
margin-bottom: 4px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.wpaw-research-result-desc {
|
|
color: #a0b8cc;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-research-fetched {
|
|
margin-top: 16px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid #2d4a6a;
|
|
}
|
|
|
|
.wpaw-research-fetched-title {
|
|
font-size: 12px;
|
|
color: #61dafb;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-research-fetched-content {
|
|
background: rgba(97, 218, 251, 0.05);
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
color: #a0b8cc;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wpaw-message-content {
|
|
line-height: 1.6;
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.wpaw-ai-response {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin: 0 0 16px 0;
|
|
padding-left: 10px;
|
|
border-left: 2px solid #e0e6ed;
|
|
position: relative;
|
|
}
|
|
|
|
.wpaw-ai-item {
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.wpaw-plan-card,
|
|
.wpaw-edit-plan {
|
|
background: #1e2530;
|
|
border: 1px solid #2d3a4a;
|
|
padding: 14px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.wpaw-plan-card:hover {
|
|
border-color: #3d5070;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.wpaw-plan-title {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
color: #e8ecf2;
|
|
}
|
|
|
|
.wpaw-plan-section-status {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
padding: 2px 8px;
|
|
border-radius: 10px;
|
|
margin-top: 2px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wpaw-plan-section.pending .wpaw-plan-section-status {
|
|
color: #94a3b8;
|
|
background: rgba(148, 163, 184, 0.1);
|
|
}
|
|
|
|
.wpaw-plan-section.done .wpaw-plan-section-status {
|
|
color: #4ade80;
|
|
background: rgba(74, 222, 128, 0.1);
|
|
}
|
|
|
|
.wpaw-plan-section.in_progress .wpaw-plan-section-status {
|
|
color: #60a5fa;
|
|
background: rgba(96, 165, 250, 0.1);
|
|
}
|
|
|
|
.wpaw-plan-sections,
|
|
.wpaw-edit-plan-list {
|
|
margin: 0 0 10px 18px;
|
|
padding: 0;
|
|
color: #dedede;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-plan-section {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-plan-section-row {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.wpaw-plan-section-check {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
input.wpaw-plan-section-check:checked::before {
|
|
filter: brightness(500%) contrast(200%) saturate(100%);
|
|
}
|
|
|
|
.wpaw-plan-section-body {
|
|
flex: 1;
|
|
}
|
|
|
|
.wpaw-clear-context {
|
|
margin-left: auto;
|
|
background: #f6f7f7;
|
|
border: 1px solid #8c8f94;
|
|
color: #50575e;
|
|
padding: 4px 8px;
|
|
border-radius: 2px;
|
|
font-size: 11px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wpaw-clear-context:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.wpaw-editor-lock-banner {
|
|
background: #fef3c7;
|
|
color: #92400e;
|
|
padding: 8px 10px;
|
|
border: 1px solid #fcd34d;
|
|
font-size: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.wpaw-refinement-lock-banner {
|
|
background: #dbeafe;
|
|
color: #1e3a8a;
|
|
padding: 8px 10px;
|
|
border: 1px solid #93c5fd;
|
|
font-size: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.wpaw-refine-confirm-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 1200;
|
|
background: rgba(10, 16, 27, 0.72);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 16px;
|
|
}
|
|
|
|
.wpaw-refine-confirm-modal {
|
|
width: 100%;
|
|
max-width: 420px;
|
|
background: #111827;
|
|
color: #e5e7eb;
|
|
border: 1px solid #334155;
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.wpaw-refine-confirm-title {
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-refine-confirm-body {
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
color: #cbd5e1;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.wpaw-refine-confirm-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.wpaw-block-refining {
|
|
position: relative;
|
|
outline: 2px dashed #3b82f6;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.wpaw-block-refining::before {
|
|
content: 'REFINING';
|
|
position: absolute;
|
|
top: -12px;
|
|
right: 8px;
|
|
background: #2563eb;
|
|
color: #fff;
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
padding: 3px 6px;
|
|
border-radius: 4px;
|
|
z-index: 20;
|
|
letter-spacing: 0;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Refinement lock: prevent content editing while still allowing page scroll */
|
|
.wpaw-refining-locked .editor-styles-wrapper [contenteditable="true"],
|
|
.wpaw-refining-locked .block-editor-rich-text__editable,
|
|
.wpaw-refining-locked .block-editor-writing-flow [role="textbox"] {
|
|
pointer-events: none !important;
|
|
user-select: none !important;
|
|
caret-color: transparent !important;
|
|
}
|
|
|
|
.wpaw-refining-locked .block-editor-block-toolbar,
|
|
.wpaw-refining-locked .block-editor-default-block-appender,
|
|
.wpaw-refining-locked .editor-block-list-item__inline-menu,
|
|
.wpaw-refining-locked .block-editor-inserter {
|
|
pointer-events: none !important;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.wpaw-ai-response pre {
|
|
background: #1a1d23;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
overflow-x: auto;
|
|
font-family: ui-monospace, 'SF Mono', Menlo, monospace;
|
|
font-size: 12px;
|
|
border: 1px solid #2d3139;
|
|
color: #c8cdd5;
|
|
}
|
|
|
|
.wpaw-ai-response code {
|
|
background: #2d3139;
|
|
color: #a5d6ff;
|
|
padding: 2px 5px;
|
|
border-radius: 4px;
|
|
font-family: ui-monospace, 'SF Mono', Menlo, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-editor-locked .admin-ui-navigable-region.interface-interface-skeleton__content {
|
|
position: relative;
|
|
}
|
|
|
|
.wpaw-editor-locked .admin-ui-navigable-region.interface-interface-skeleton__content::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(255, 255, 255, 0.55);
|
|
z-index: 999;
|
|
pointer-events: all;
|
|
}
|
|
|
|
/* Outline Version Tracking & Inline Editing */
|
|
.wpaw-plan-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.wpaw-plan-version {
|
|
font-size: 10px;
|
|
background: #374151;
|
|
color: #9ca3af;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.wpaw-plan-section-drag {
|
|
cursor: grab;
|
|
color: #6b7280;
|
|
padding: 0 4px;
|
|
font-size: 12px;
|
|
opacity: 0.5;
|
|
transition: opacity 150ms;
|
|
}
|
|
|
|
.wpaw-plan-section-drag:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.wpaw-plan-section-drag:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
/* Drag and drop visual feedback */
|
|
.wpaw-plan-section.dragging {
|
|
opacity: 0.5;
|
|
background: rgba(59, 130, 246, 0.2);
|
|
}
|
|
|
|
.wpaw-plan-section.drag-over {
|
|
border-top: 2px solid #3b82f6;
|
|
}
|
|
|
|
.wpaw-plan-section-drag:hover {
|
|
cursor: grab;
|
|
}
|
|
|
|
.wpaw-plan-section-drag:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.wpaw-plan-section-edit {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex: 1;
|
|
}
|
|
|
|
.wpaw-plan-section-edit-input {
|
|
flex: 1;
|
|
background: #1f2937;
|
|
border: 1px solid #3b82f6;
|
|
border-radius: 4px;
|
|
color: #f3f4f6;
|
|
padding: 4px 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-plan-section-edit-input:focus {
|
|
outline: none;
|
|
border-color: #60a5fa;
|
|
}
|
|
|
|
.wpaw-plan-section-edit-save,
|
|
.wpaw-plan-section-edit-cancel {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
transition: background 150ms;
|
|
}
|
|
|
|
.wpaw-plan-section-edit-save {
|
|
color: #22c55e;
|
|
}
|
|
|
|
.wpaw-plan-section-edit-save:hover {
|
|
background: rgba(34, 197, 94, 0.2);
|
|
}
|
|
|
|
.wpaw-plan-section-edit-cancel {
|
|
color: #ef4444;
|
|
}
|
|
|
|
.wpaw-plan-section-edit-cancel:hover {
|
|
background: rgba(239, 68, 68, 0.2);
|
|
}
|
|
|
|
.wpaw-plan-section-edit-btn {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
padding: 4px;
|
|
opacity: 0;
|
|
transition: opacity 150ms;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.wpaw-plan-section-row:hover .wpaw-plan-section-edit-btn {
|
|
opacity: 1;
|
|
}
|
|
|
|
.wpaw-plan-section-wordcount {
|
|
font-size: 10px;
|
|
color: #9ca3af;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* Refinement Actions Panel */
|
|
.wpaw-refinement-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 16px;
|
|
background: #1f2937;
|
|
border-top: 1px solid #374151;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.wpaw-refinement-actions-label {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: #9ca3af;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wpaw-refinement-btn {
|
|
background: #374151;
|
|
border: 1px solid #4b5563;
|
|
border-radius: 6px;
|
|
color: #d1d5db;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
padding: 6px 12px;
|
|
transition: all 150ms ease;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.wpaw-refinement-btn:hover {
|
|
background: #4b5563;
|
|
border-color: #6b7280;
|
|
color: #f3f4f6;
|
|
}
|
|
|
|
.wpaw-refinement-btn:active {
|
|
transform: scale(0.98);
|
|
}
|
|
|
|
.wpaw-plan-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.wpaw-edit-plan-item {
|
|
margin-bottom: 6px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.wpaw-edit-plan-preview-label {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: #6b7280;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-title {
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
}
|
|
|
|
.dark-theme .wpaw-edit-plan-item-title {
|
|
color: #dedede;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-before,
|
|
.wpaw-edit-plan-item-after {
|
|
font-size: 12px;
|
|
/* color: #5b6472; */
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-target {
|
|
margin-top: 6px;
|
|
font-size: 12px;
|
|
color: #8b949e;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-target:hover {
|
|
color: #58a6ff;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-target:disabled {
|
|
color: #6b7280;
|
|
cursor: default;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-before {
|
|
border-left: 2px solid #f0b429;
|
|
padding-left: 6px;
|
|
color: #f0b429;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-after {
|
|
border-left: 2px solid #2f855a;
|
|
padding-left: 6px;
|
|
color: #2f855a;
|
|
}
|
|
|
|
.wpaw-response {
|
|
margin: 0 0 12px 0;
|
|
border-left: 2px solid #3d4450;
|
|
color: #dce0e8;
|
|
}
|
|
|
|
.dark-theme .wpaw-response {
|
|
color: #dce0e8;
|
|
}
|
|
|
|
.wpaw-ai-response .wpaw-response {
|
|
border-left: none;
|
|
}
|
|
|
|
.wpaw-ai-response .wpaw-response::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: -15px;
|
|
top: 20px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #cfd7df;
|
|
border: 1px solid #e0e6ed;
|
|
box-shadow: 0 0 0 2px #f6f7fb;
|
|
}
|
|
|
|
.wpaw-streaming-indicator {
|
|
padding-left: 12px;
|
|
font-size: 12px;
|
|
color: #6b7280;
|
|
}
|
|
|
|
.wpaw-streaming-indicator::after {
|
|
content: '...';
|
|
display: inline-block;
|
|
width: 18px;
|
|
animation: wpaw-ellipsis 1.1s infinite;
|
|
}
|
|
|
|
.wpaw-edit-plan {
|
|
padding: 12px;
|
|
border: 1px dashed #d0d7de;
|
|
}
|
|
|
|
.wpaw-edit-plan-title {
|
|
font-weight: 600;
|
|
margin-bottom: 6px;
|
|
color: #1f2937;
|
|
}
|
|
|
|
.dark-theme .wpaw-edit-plan-title {
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-edit-plan-summary {
|
|
font-size: 12px;
|
|
color: #4b5563;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.dark-theme .wpaw-edit-plan-summary {
|
|
color: #dedede;
|
|
}
|
|
|
|
.wpaw-edit-plan-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
@keyframes wpaw-ellipsis {
|
|
0% {
|
|
content: '.';
|
|
}
|
|
|
|
33% {
|
|
content: '..';
|
|
}
|
|
|
|
66% {
|
|
content: '...';
|
|
}
|
|
|
|
100% {
|
|
content: '.';
|
|
}
|
|
}
|
|
|
|
/* Timeline Progress */
|
|
.wpaw-timeline-entry {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-bottom: 0;
|
|
padding: 10px 12px;
|
|
/* background: #f6f7fb; */
|
|
box-shadow: none;
|
|
position: relative;
|
|
font-size: 12.5px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.wpaw-timeline-entry:last-child {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.wpaw-timeline-entry:not(:last-child) {
|
|
padding-bottom: 18px;
|
|
}
|
|
|
|
/* Colored line for active timeline */
|
|
.wpaw-timeline-entry.active:not(:first-of-type)::before {
|
|
/* background: linear-gradient(to bottom, #2271b1 0%, #cfd7df 100%); */
|
|
background: #2271b1;
|
|
display: none;
|
|
}
|
|
|
|
/* Colored line for completed timeline */
|
|
.wpaw-timeline-entry.complete:not(:first-of-type)::before {
|
|
/* background: linear-gradient(to bottom, #2e8540 0%, #cfd7df 100%); */
|
|
background: #2e8540;
|
|
display: none;
|
|
}
|
|
|
|
/* .wpaw-timeline-entry.active { */
|
|
/* background: #fff; */
|
|
/* border: 1px solid #bfdbfe; */
|
|
/* box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -1px rgba(59, 130, 246, 0.06); */
|
|
/* margin-bottom: 15px; */
|
|
/* border-radius: 6px; */
|
|
/* } */
|
|
|
|
.wpaw-timeline-entry.inactive {
|
|
background: transparent;
|
|
border: 1px dashed #e2e8f0;
|
|
margin-bottom: 15px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.wpaw-timeline-entry.complete {
|
|
background: rgb(188 235 203 / 5%);
|
|
/* border: 1px solid #bbf7d0; */
|
|
/* margin-bottom: 15px; */
|
|
/* border-radius: 6px; */
|
|
}
|
|
|
|
.wpaw-processing-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
margin-top: 6px;
|
|
font-size: 12px;
|
|
color: #4b5563;
|
|
}
|
|
|
|
.wpaw-processing-indicator .components-spinner {
|
|
margin: 0;
|
|
}
|
|
|
|
.wpaw-timeline-dot {
|
|
flex-shrink: 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #eef1f5;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
left: -17px;
|
|
z-index: 2;
|
|
border: 1px solid #e0e6ed;
|
|
/* box-shadow: 0 0 0 2px #f6f7fb; */
|
|
}
|
|
|
|
.wpaw-timeline-entry.is-current .wpaw-timeline-dot {
|
|
background: #eff6ff;
|
|
box-shadow: 0 0 0 2px #3b82f6;
|
|
border-color: #3b82f6;
|
|
animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
|
|
}
|
|
|
|
.wpaw-timeline-entry.complete .wpaw-timeline-dot {
|
|
background: #f0fdf4;
|
|
box-shadow: 0 0 0 1px #22c55e;
|
|
border-color: #22c55e;
|
|
color: #15803d;
|
|
}
|
|
|
|
.wpaw-timeline-entry.inactive .wpaw-timeline-dot {
|
|
background: #f1f5f9;
|
|
box-shadow: none;
|
|
border-color: #e2e8f0;
|
|
}
|
|
|
|
.wpaw-plan-section-row input[type=checkbox] {
|
|
transform: translateY(3px);
|
|
}
|
|
|
|
@keyframes pulse-ring {
|
|
0% {
|
|
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
|
|
}
|
|
|
|
70% {
|
|
box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
|
|
}
|
|
|
|
100% {
|
|
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
|
|
}
|
|
}
|
|
|
|
.wpaw-timeline-content {
|
|
flex: 1;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
color: #c8cdd5;
|
|
}
|
|
|
|
.wpaw-timeline-message {
|
|
font-size: 12.5px;
|
|
color: #c8cdd5;
|
|
margin-bottom: 5px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.dark-theme .wpaw-timeline-message {
|
|
color: #e0e4ea;
|
|
}
|
|
|
|
.wpaw-timeline-complete {
|
|
font-size: 11.5px;
|
|
color: #2e8540;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.wpaw-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.wpaw-actions button {
|
|
flex: 1;
|
|
}
|
|
|
|
/* Primary Button - WP Style */
|
|
.wpaw-actions .is-primary,
|
|
.wpaw-actions .components-button.is-primary,
|
|
.wpaw-plan-actions .is-primary {
|
|
background: #2271b1;
|
|
border: 1px solid #2271b1;
|
|
border-radius: 8px;
|
|
padding: 8px 14px;
|
|
font-weight: 400;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
transition: background 0.1s ease;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.wpaw-actions .is-primary:hover,
|
|
.wpaw-actions .components-button.is-primary:hover,
|
|
.wpaw-plan-actions .is-primary:hover {
|
|
background: #135e96;
|
|
border-color: #135e96;
|
|
}
|
|
|
|
.components-button.is-primary,
|
|
.components-button.is-secondary {
|
|
justify-content: center;
|
|
}
|
|
|
|
.wpaw-actions .is-primary:disabled {
|
|
background: #a7aaad;
|
|
border-color: #a7aaad;
|
|
color: #fff;
|
|
}
|
|
|
|
/* (Dead wpaw-header-actions CSS removed — P1 cleanup) */
|
|
|
|
/* ===========================
|
|
CONFIG TAB
|
|
=========================== */
|
|
.wpaw-config-tab {
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.wpaw-config-tab .wpaw-config-unavailable {
|
|
text-align: center;
|
|
padding: 40px 20px;
|
|
color: #666;
|
|
font-style: italic;
|
|
}
|
|
|
|
.wpaw-config-tab .wpaw-tab-header {
|
|
position: absolute;
|
|
width: calc(100% - 15px);
|
|
z-index: 2;
|
|
}
|
|
|
|
.wpaw-config-tab>*:nth-child(2) {
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.wpaw-config-tab h3 {
|
|
margin: 0 0 20px 0;
|
|
font-size: 18px;
|
|
color: #2271b1;
|
|
border-bottom: 2px solid #e0e0e0;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.wpaw-config-section {
|
|
padding: 12px;
|
|
background: #fff;
|
|
border-radius: 0;
|
|
border: 1px solid #dcdcde;
|
|
}
|
|
|
|
.wpaw-config-section:hover {
|
|
border-color: #8c8f94;
|
|
}
|
|
|
|
.wpaw-config-section label {
|
|
display: block;
|
|
font-weight: 600;
|
|
margin-bottom: 6px;
|
|
color: #1d2227;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-select {
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
font-size: 11px;
|
|
border: 1px solid #8c8f94;
|
|
border-radius: 2px;
|
|
background: #fff;
|
|
cursor: pointer;
|
|
color: #1d2227;
|
|
}
|
|
|
|
.wpaw-config-section .wpaw-select {
|
|
width: 100% !important;
|
|
max-width: unset !important;
|
|
}
|
|
|
|
.wpaw-select:focus {
|
|
outline: none;
|
|
border-color: #2271b1;
|
|
box-shadow: 0 0 0 1px #2271b1;
|
|
}
|
|
|
|
.wpaw-config-section h4 {
|
|
margin: 0 0 10px 0;
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|
|
|
|
/* ===========================
|
|
COST TAB
|
|
=========================== */
|
|
.wpaw-cost-tab {
|
|
font-family: ui-monospace, monospace;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.wpaw-cost-tab h3 {
|
|
margin: 0 0 20px 0;
|
|
font-size: 18px;
|
|
color: #2271b1;
|
|
border-bottom: 2px solid #e0e0e0;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.wpaw-cost-card {
|
|
display: grid;
|
|
}
|
|
|
|
.wpaw-cost-stat {
|
|
padding: 12px;
|
|
background: #252830;
|
|
border-radius: 0;
|
|
border: 1px solid #dcdcde;
|
|
text-align: center;
|
|
}
|
|
|
|
.wpaw-cost-stat:hover {
|
|
border-color: #8c8f94;
|
|
}
|
|
|
|
.wpaw-cost-stat label {
|
|
display: block;
|
|
font-size: 13px;
|
|
color: #6c6c6c;
|
|
font-weight: 600;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-cost-value {
|
|
font-size: 22px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.wpaw-budget-bar {
|
|
width: 100%;
|
|
height: 10px;
|
|
background: #4c4c4c;
|
|
overflow: hidden;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.wpaw-budget-bar~.description {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.wpaw-budget-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #4caf50, #66bb6a);
|
|
transition: width 0.5s ease, background 0.3s ease;
|
|
}
|
|
|
|
.wpaw-budget-fill.warning {
|
|
background: linear-gradient(90deg, #ff9800, #ffa726);
|
|
}
|
|
|
|
.wpaw-budget-fill.danger {
|
|
background: linear-gradient(90deg, #f44336, #ef5350);
|
|
}
|
|
|
|
.wpaw-refresh-btn {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
padding: 4px;
|
|
margin-left: auto;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.wpaw-refresh-btn:hover {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.wpaw-cost-remaining .wpaw-cost-value {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.wpaw-cost-value.ok {
|
|
color: #4caf50;
|
|
}
|
|
|
|
.wpaw-cost-value.warning {
|
|
color: #ff9800;
|
|
}
|
|
|
|
.wpaw-cost-value.danger {
|
|
color: #f44336;
|
|
}
|
|
|
|
.wpaw-budget-section {
|
|
padding: 12px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.wpaw-budget-label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 12px;
|
|
color: #a7aaad;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-budget-warning {
|
|
padding: 8px 12px;
|
|
margin: 8px 12px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.wpaw-budget-warning.warning {
|
|
background: rgba(255, 152, 0, 0.15);
|
|
color: #ff9800;
|
|
}
|
|
|
|
.wpaw-budget-warning.danger {
|
|
background: rgba(244, 67, 54, 0.15);
|
|
color: #f44336;
|
|
}
|
|
|
|
.wpaw-cost-footer {
|
|
padding: 12px;
|
|
margin-top: 12px;
|
|
border-top: 1px solid #3c3c3c;
|
|
text-align: center;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-cost-settings-link {
|
|
color: #a7aaad;
|
|
text-decoration: none;
|
|
font-size: 12px;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.wpaw-cost-settings-link:hover {
|
|
color: #2271b1;
|
|
}
|
|
|
|
/* Cost History Table */
|
|
.wpaw-cost-history {
|
|
margin: 16px 12px;
|
|
}
|
|
|
|
.wpaw-cost-history h4 {
|
|
color: #e0e0e0;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
margin: 0 0 12px 0;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.wpaw-cost-table-wrapper {
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.wpaw-cost-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-cost-table thead {
|
|
position: sticky;
|
|
top: 0;
|
|
background: #2c2c2c;
|
|
z-index: 1;
|
|
}
|
|
|
|
.wpaw-cost-table th {
|
|
padding: 8px 6px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
color: #a7aaad;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
background-color: #2c2c2c;
|
|
}
|
|
|
|
.wpaw-cost-table td {
|
|
padding: 8px 6px;
|
|
color: #e0e0e0;
|
|
border-bottom: 1px solid #2c2c2c;
|
|
}
|
|
|
|
.wpaw-cost-table tbody tr:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.wpaw-cost-table td:nth-child(4),
|
|
.wpaw-cost-table td:nth-child(5) {
|
|
text-align: right;
|
|
}
|
|
|
|
.wpaw-cost-table th:nth-child(4),
|
|
.wpaw-cost-table th:nth-child(5) {
|
|
text-align: right;
|
|
}
|
|
|
|
/* ===========================
|
|
CLARIFICATION QUIZ
|
|
=========================== */
|
|
.wpaw-clarification-quiz {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.wpaw-quiz-header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.wpaw-quiz-header h3 {
|
|
margin: 0 0 15px 0;
|
|
font-size: 18px;
|
|
color: #6c6c6c;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-progress-bar {
|
|
width: 100%;
|
|
height: 8px;
|
|
background: #e0e0e0;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-progress-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #2271b1, #135e96);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.wpaw-quiz-header span {
|
|
font-size: 12px;
|
|
color: #757575;
|
|
}
|
|
|
|
.wpaw-question-card {
|
|
background: #f9f9f9;
|
|
border: 1px solid #e0e0e0;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.wpaw-question-card h4 {
|
|
margin: 0 0 15px 0;
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|
|
|
|
.dark-theme .wpaw-question-card {
|
|
border-radius: unset;
|
|
background-color: #252830;
|
|
border-color: #6c6c6c;
|
|
}
|
|
|
|
.wpaw-answer-options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.wpaw-answer-options label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
border: 2px solid #6c6c6c;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.wpaw-answer-options label:hover {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.wpaw-answer-options label:has(input:checked) {
|
|
border-color: #2271b1;
|
|
background: #162c42;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.wpaw-answer-options input[type="radio"],
|
|
.wpaw-answer-options input[type="checkbox"] {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
|
|
.wpaw-answer-options span {
|
|
flex: 1;
|
|
}
|
|
|
|
/* Textarea styling for open_text questions */
|
|
.wpaw-answer-options textarea {
|
|
width: 100%;
|
|
min-height: 100px;
|
|
padding: 12px;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 6px;
|
|
background: white;
|
|
transition: border-color 0.2s ease;
|
|
}
|
|
|
|
.wpaw-answer-options textarea:focus {
|
|
outline: none;
|
|
border-color: #2271b1;
|
|
box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
|
|
}
|
|
|
|
.wpaw-previous-answers {
|
|
margin-top: 15px;
|
|
padding: 15px;
|
|
background: #fff;
|
|
border-radius: 6px;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.wpaw-previous-answers strong {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
font-size: 13px;
|
|
color: #757575;
|
|
}
|
|
|
|
.wpaw-question-label {
|
|
display: block;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: #2271b1;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.wpaw-answer-text {
|
|
margin: 0 0 10px 0;
|
|
padding: 8px 12px;
|
|
background: #f5f5f5;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-previous-answers>div:last-child .wpaw-answer-text {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.wpaw-quiz-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: space-between;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.wpaw-quiz-actions button {
|
|
justify-content: center;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-quiz-actions button.is-primary {
|
|
flex: 1;
|
|
}
|
|
|
|
/* Custom answer input */
|
|
.wpaw-custom-answer-wrapper {
|
|
margin-top: 12px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.wpaw-custom-text-input {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
padding: 8px 12px;
|
|
background: #1e1e1e;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 4px;
|
|
color: #e0e0e0;
|
|
font-size: 13px;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-custom-text-input:focus {
|
|
outline: none;
|
|
border-color: #2271b1;
|
|
}
|
|
|
|
/* Config form styles */
|
|
.wpaw-config-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.wpaw-config-field {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 15px;
|
|
padding: 12px;
|
|
background: #1a1a1a;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.wpaw-config-label {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.wpaw-config-label-text {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #e0e0e0;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-config-description {
|
|
font-size: 12px;
|
|
color: #888;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-config-toggle {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 48px;
|
|
height: 24px;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wpaw-config-toggle input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.wpaw-toggle-slider {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #3c3c3c;
|
|
border-radius: 24px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.wpaw-toggle-slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 18px;
|
|
width: 18px;
|
|
left: 3px;
|
|
bottom: 3px;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.wpaw-config-toggle input:checked+.wpaw-toggle-slider {
|
|
background-color: #2271b1;
|
|
}
|
|
|
|
.wpaw-config-toggle input:checked+.wpaw-toggle-slider:before {
|
|
transform: translateX(24px);
|
|
}
|
|
|
|
.wpaw-config-text-input {
|
|
width: 250px;
|
|
padding: 6px 10px;
|
|
background: #252830;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 4px;
|
|
color: #e0e0e0;
|
|
font-size: 13px;
|
|
font-family: ui-monospace, monospace;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-config-text-input:focus {
|
|
outline: none;
|
|
border-color: #2271b1;
|
|
}
|
|
|
|
.wpaw-config-text-input::placeholder {
|
|
color: #6c6c6c;
|
|
}
|
|
|
|
.wpaw-question-card .wpaw-config-form label {
|
|
display: flex;
|
|
}
|
|
|
|
.wpaw-question-card .wpaw-config-form .wpaw-config-label .wpaw-config-description {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.wpaw-question-card .wpaw-config-field:has(input[type=text]) {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.wpaw-question-card:has(.wpaw-config-form) {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.wpaw-question-card:has(.wpaw-config-form) h4,
|
|
.wpaw-question-card:has(.wpaw-config-form) .wpaw-quiz-actions {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.wpaw-question-card .wpaw-config-form {
|
|
gap: 0;
|
|
}
|
|
|
|
.wpaw-question-card .wpaw-config-form .wpaw-config-field {
|
|
border-radius: unset !important;
|
|
border-width: 1px 0;
|
|
background-color: unset;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.wpaw-question-card .wpaw-config-form .wpaw-config-field input[type=text] {
|
|
background-color: #1a1a1a !important;
|
|
}
|
|
|
|
.dark-theme .wpaw-question-card {
|
|
border-radius: unset;
|
|
background-color: #252830;
|
|
border-color: #6c6c6c;
|
|
}
|
|
|
|
.dark-theme .wpaw-question-card h4 {
|
|
color: white;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.dark-theme .wpaw-question-card textarea {
|
|
background: #252830;
|
|
color: white;
|
|
outline: unset;
|
|
border-color: #3c3c3c;
|
|
font-family: ui-monospace, monospace;
|
|
letter-spacing: 1px;
|
|
line-height: normal;
|
|
}
|
|
|
|
.dark-theme .wpaw-question-card textarea::placeholder {
|
|
color: #6c6c6c
|
|
}
|
|
|
|
.dark-theme .wpaw-question-card textarea::focus,
|
|
.dark-theme .wpaw-question-card textarea::active {
|
|
border-color: #252830 !important;
|
|
;
|
|
}
|
|
|
|
/* ===========================
|
|
INFO MESSAGES
|
|
=========================== */
|
|
.wpaw-info {
|
|
padding: 12px 15px;
|
|
background: #fff3cd;
|
|
border-left: 4px solid #ffc107;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
margin: 10px 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.wpaw-info a {
|
|
color: #856404;
|
|
font-weight: 600;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.wpaw-info a:hover {
|
|
color: #533f03;
|
|
}
|
|
|
|
/* ===========================
|
|
BLOCK MENTION STYLES
|
|
=========================== */
|
|
.wpaw-block-mentioned {
|
|
outline: 2px solid #2271b1 !important;
|
|
outline-offset: 2px;
|
|
box-shadow: 0 0 0 4px rgba(34, 113, 177, 0.2);
|
|
animation: wpaw-pulse 1.5s infinite;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.wpaw-block-mentioned:hover {
|
|
outline-width: 3px;
|
|
box-shadow: 0 0 0 8px rgba(34, 113, 177, 0.3);
|
|
}
|
|
|
|
@keyframes wpaw-pulse {
|
|
|
|
0%,
|
|
100% {
|
|
box-shadow: 0 0 0 0px rgba(34, 113, 177, 0.2);
|
|
}
|
|
|
|
50% {
|
|
box-shadow: 0 0 0 6px rgba(34, 113, 177, 0.4);
|
|
}
|
|
}
|
|
|
|
/* Mention autocomplete */
|
|
.wpaw-mention-autocomplete {
|
|
position: absolute;
|
|
background: white;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
z-index: 1000;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.wpaw-mention-option {
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
border-bottom: 1px solid #eee;
|
|
transition: background 0.15s ease;
|
|
}
|
|
|
|
.wpaw-mention-option:hover,
|
|
.wpaw-mention-option.selected {
|
|
background: #e7f3ff;
|
|
border-left: 3px solid #2271b1;
|
|
}
|
|
|
|
.wpaw-mention-option strong {
|
|
display: block;
|
|
color: #333;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-mention-option span {
|
|
display: block;
|
|
color: #666;
|
|
font-size: 12px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* ===========================
|
|
RESPONSIVE
|
|
=========================== */
|
|
@media (max-width: 782px) {
|
|
.wpaw-cost-card {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 482px) {
|
|
|
|
.interface-complementary-area__fill:has(#wp-agentic-writer\:wp-agentic-writer),
|
|
#wp-agentic-writer\:wp-agentic-writer {
|
|
width: 100vw !important;
|
|
}
|
|
}
|
|
|
|
/* Custom Dots Loader for Agentic Vibe */
|
|
.wpaw-dots-loader {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background-color: #3b82f6;
|
|
box-shadow: 12px 0 #3b82f6, -12px 0 #3b82f6;
|
|
position: relative;
|
|
animation: wpaw-flash 0.5s ease-out infinite alternate;
|
|
margin: 0 20px 0 16px;
|
|
display: inline-block;
|
|
}
|
|
|
|
@keyframes wpaw-flash {
|
|
0% {
|
|
background-color: #93c5fd;
|
|
box-shadow: 12px 0 #93c5fd, -12px 0 #3b82f6;
|
|
}
|
|
|
|
50% {
|
|
background-color: #3b82f6;
|
|
box-shadow: 12px 0 #93c5fd, -12px 0 #93c5fd;
|
|
}
|
|
|
|
100% {
|
|
background-color: #93c5fd;
|
|
box-shadow: 12px 0 #3b82f6, -12px 0 #93c5fd;
|
|
}
|
|
}
|
|
|
|
/* Time Elapsed Indicator */
|
|
.wpaw-timeline-elapsed {
|
|
font-weight: 400;
|
|
color: #6b7280;
|
|
font-size: 11px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
/* ===========================
|
|
AGENTIC UI REVAMP
|
|
=========================== */
|
|
|
|
/* Status Bar */
|
|
.wpaw-status-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 8px 12px;
|
|
background: #1d2227;
|
|
color: #fff;
|
|
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
|
|
font-size: 12px;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.wpaw-status-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wpaw-status-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #50575e;
|
|
}
|
|
|
|
.wpaw-status-dot.idle {
|
|
background: #50575e;
|
|
}
|
|
|
|
.wpaw-status-dot.thinking {
|
|
background: #dba617;
|
|
animation: statusPulse 1s infinite;
|
|
}
|
|
|
|
.wpaw-status-dot.writing {
|
|
background: #2271b1;
|
|
animation: statusPulse 0.8s infinite;
|
|
}
|
|
|
|
.wpaw-status-dot.complete {
|
|
background: #00a32a;
|
|
}
|
|
|
|
.wpaw-status-dot.error {
|
|
background: #d63638;
|
|
}
|
|
|
|
@keyframes statusPulse {
|
|
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
|
|
.wpaw-status-label {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.wpaw-status-cost {
|
|
color: #a7aaad;
|
|
font-size: 11px;
|
|
}
|
|
|
|
/* Unified Activity Log */
|
|
.wpaw-activity-log {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
background: #fff;
|
|
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.dark-theme .wpaw-activity-log {
|
|
background: transparent;
|
|
border: unset;
|
|
}
|
|
|
|
.wpaw-log-entry {
|
|
padding: 10px 12px;
|
|
border-left: 3px solid transparent;
|
|
border-bottom: 1px solid #f0f0f1;
|
|
}
|
|
|
|
.wpaw-log-entry:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* User Command */
|
|
.wpaw-log-entry.user-command {
|
|
background: #f0f6fc;
|
|
border-left-color: #2271b1;
|
|
}
|
|
|
|
.wpaw-log-entry.user-command::before {
|
|
content: "> ";
|
|
color: #2271b1;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Agent Status (thinking, processing) */
|
|
.wpaw-log-entry.agent-status {
|
|
color: #50575e;
|
|
padding-left: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.wpaw-log-entry.agent-status::before {
|
|
content: "●";
|
|
position: absolute;
|
|
left: 12px;
|
|
color: #8c8f94;
|
|
font-size: 8px;
|
|
}
|
|
|
|
.wpaw-log-entry.agent-status.active::before {
|
|
color: #2271b1;
|
|
animation: statusPulse 1s infinite;
|
|
}
|
|
|
|
/* Agent Success */
|
|
.wpaw-log-entry.agent-success {
|
|
border-left-color: #00a32a;
|
|
color: #1d2227;
|
|
}
|
|
|
|
.wpaw-log-entry.agent-success::before {
|
|
content: "✓ ";
|
|
color: #00a32a;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Agent Error */
|
|
.wpaw-log-entry.agent-error {
|
|
background: #fcf0f0;
|
|
border-left-color: #d63638;
|
|
color: #8a1e1e;
|
|
}
|
|
|
|
.wpaw-log-entry.agent-error::before {
|
|
content: "✗ ";
|
|
color: #d63638;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Agent Response (prose) */
|
|
.wpaw-log-entry.agent-response {
|
|
border-left-color: #dcdcde;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
/* Command Input Area */
|
|
.wpaw-command-area {
|
|
background: #1d2227;
|
|
padding: 12px;
|
|
border-top: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.wpaw-command-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-command-mode {
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
color: #a7aaad;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-command-mode-value {
|
|
color: #2271b1;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wpaw-command-input-wrapper {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
background: #252830;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
.wpaw-command-prefix {
|
|
color: #2271b1;
|
|
font-family: ui-monospace, monospace;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
user-select: none;
|
|
}
|
|
|
|
.wpaw-command-input-wrapper .components-textarea-control {
|
|
flex: 1;
|
|
}
|
|
|
|
.wpaw-command-input-wrapper textarea,
|
|
.wpaw-command-input-wrapper .components-textarea-control__input {
|
|
flex: 1;
|
|
background: transparent !important;
|
|
border: none !important;
|
|
color: #fff !important;
|
|
font-family: ui-monospace, SFMono-Regular, monospace !important;
|
|
font-size: 13px !important;
|
|
line-height: 1.5 !important;
|
|
resize: none !important;
|
|
min-height: 20px !important;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.wpaw-command-input-wrapper textarea::placeholder {
|
|
color: #6c6c6c !important;
|
|
}
|
|
|
|
.wpaw-command-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.wpaw-command-btn {
|
|
background: #2271b1;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 2px;
|
|
padding: 8px 16px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
cursor: pointer;
|
|
transition: background 0.1s ease;
|
|
}
|
|
|
|
.wpaw-command-btn:hover {
|
|
background: #135e96;
|
|
}
|
|
|
|
.wpaw-command-btn:disabled {
|
|
background: #3c3c3c;
|
|
color: #6c6c6c;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.wpaw-command-btn.secondary {
|
|
background: transparent;
|
|
color: #a7aaad;
|
|
border: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.wpaw-command-btn.secondary:hover {
|
|
border-color: #6c6c6c;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Minimal Tabs Override */
|
|
.wpaw-tabs-minimal {
|
|
display: flex;
|
|
background: #1d2227;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.wpaw-tabs-minimal .wpaw-tab-btn {
|
|
background: transparent;
|
|
color: #a7aaad;
|
|
border: none;
|
|
border-bottom: 2px solid transparent;
|
|
padding: 10px 16px;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-tabs-minimal .wpaw-tab-btn:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-tabs-minimal .wpaw-tab-btn.active {
|
|
color: #fff;
|
|
border-bottom-color: #2271b1;
|
|
}
|
|
|
|
/* ===========================
|
|
UI REVAMP - PHASE 2
|
|
=========================== */
|
|
|
|
/* Status Bar Actions (Top Right) */
|
|
.wpaw-status-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.wpaw-status-icon-btn {
|
|
background: transparent;
|
|
border: none;
|
|
color: #a7aaad;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
padding: 2px;
|
|
line-height: 1;
|
|
transition: color 0.1s ease, transform 0.1s ease;
|
|
}
|
|
|
|
.wpaw-status-icon-btn:hover {
|
|
color: #fff;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.wpaw-status-icon-btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
|
|
.wpaw-undo-btn {
|
|
background: rgba(34, 113, 177, 0.15);
|
|
border-radius: 4px;
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-undo-btn:hover:not(:disabled) {
|
|
background: rgba(34, 113, 177, 0.3);
|
|
color: #60a5fa;
|
|
}
|
|
|
|
/* Bottom Toolbar (Inline with Execute) */
|
|
.wpaw-command-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 10px;
|
|
padding-top: 8px;
|
|
border-top: 1px solid #252830;
|
|
}
|
|
|
|
.wpaw-command-actions-group {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.wpaw-command-actions-group button:last-child {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-command-mode-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.wpaw-command-label {
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
color: #6c6c6c;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-command-mode-select {
|
|
background: transparent;
|
|
border: none;
|
|
color: #2271b1;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
margin: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.wpaw-command-mode-select:focus {
|
|
box-shadow: none;
|
|
outline: none;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Web Search Toggle */
|
|
.wpaw-web-search-toggle {
|
|
display: flex !important;
|
|
margin-bottom: 0 !important;
|
|
align-items: center;
|
|
gap: 4px;
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
transition: background 0.15s ease;
|
|
}
|
|
|
|
.wpaw-web-search-toggle:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.wpaw-web-search-toggle input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
|
|
.wpaw-web-search-icon {
|
|
font-size: 12px;
|
|
opacity: 0.5;
|
|
transition: opacity 0.15s ease;
|
|
}
|
|
|
|
.wpaw-web-search-toggle input:checked+.wpaw-web-search-icon {
|
|
opacity: 1;
|
|
}
|
|
|
|
.wpaw-web-search-toggle input:checked+.wpaw-web-search-icon * {
|
|
stroke: #4caf50;
|
|
}
|
|
|
|
.wpaw-web-search-label {
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: #6c6c6c;
|
|
transition: color 0.15s ease;
|
|
}
|
|
|
|
.wpaw-web-search-toggle input:checked~.wpaw-web-search-label {
|
|
color: #4caf50;
|
|
}
|
|
|
|
/* Blocked state (no Brave API key for local models) */
|
|
.wpaw-web-search-toggle.wpaw-search-blocked {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.wpaw-web-search-toggle.wpaw-search-blocked:hover {
|
|
background: rgba(255, 80, 80, 0.08);
|
|
}
|
|
|
|
.wpaw-web-search-toggle.wpaw-search-blocked .wpaw-web-search-label {
|
|
color: #ff6b6b;
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.wpaw-command-text-btn {
|
|
background: transparent;
|
|
border: none;
|
|
color: #6c6c6c;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
letter-spacing: 0.05em;
|
|
padding: 4px 8px;
|
|
transition: color 0.1s ease;
|
|
}
|
|
|
|
.wpaw-command-text-btn:hover {
|
|
color: #d63638;
|
|
/* Red on hover for clear */
|
|
}
|
|
|
|
.wpaw-command-stop-btn {
|
|
background: #d63638;
|
|
color: #fff;
|
|
border: none;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
padding: 6px 12px;
|
|
border-radius: 4px;
|
|
transition: background 0.1s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-command-stop-btn:hover {
|
|
background: #b32d2e;
|
|
}
|
|
|
|
.wpaw-resume-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid #3c3c3c;
|
|
}
|
|
|
|
/* Circle Icon Buttons */
|
|
.wpaw-command-circle-btn {
|
|
width: 40px !important;
|
|
height: 40px !important;
|
|
border-radius: 50%;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s ease;
|
|
padding: 0;
|
|
}
|
|
|
|
.wpaw-send-circle-btn {
|
|
background: #2271b1;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-send-circle-btn:hover:not(:disabled) {
|
|
background: #135e96;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.wpaw-send-circle-btn:disabled {
|
|
background: #3c3c3c;
|
|
color: #6c6c6c;
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.wpaw-stop-circle-btn {
|
|
background: #d63638;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-stop-circle-btn:hover {
|
|
background: #b32d2e;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.wpaw-command-circle-btn svg {
|
|
width: 20px !important;
|
|
height: 20px !important;
|
|
margin-bottom: unset !important;
|
|
}
|
|
|
|
/* Dark Theme Tabs (Config & Cost) */
|
|
.wpaw-tab-content.dark-theme {
|
|
background: #1d2227;
|
|
/* Match status bar / command area */
|
|
color: #fff;
|
|
overflow-y: auto;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Tab Header with Back Button */
|
|
.wpaw-tab-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px 16px;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
background: #252525;
|
|
}
|
|
|
|
.wpaw-tab-header h3 {
|
|
margin: 0;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-back-btn {
|
|
background: transparent;
|
|
border: 1px solid #3c3c3c;
|
|
color: #a7aaad;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
padding: 4px 10px;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
transition: all 0.1s ease;
|
|
}
|
|
|
|
.wpaw-back-btn:hover {
|
|
border-color: #6c6c6c;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Dark Theme Config Sections */
|
|
.wpaw-tab-content.dark-theme .wpaw-config-section {
|
|
padding: 16px;
|
|
border-top: unset;
|
|
border-right: unset;
|
|
border-left: unset;
|
|
border-bottom: 1px solid #6c6c6c;
|
|
background-color: #252830;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme label {
|
|
display: block;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
color: #a7aaad;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-select,
|
|
.wpaw-tab-content.dark-theme input[type="text"],
|
|
.wpaw-tab-content.dark-theme select {
|
|
background: #252830 !important;
|
|
border: 1px solid #3c3c3c !important;
|
|
color: #fff !important;
|
|
border-radius: 2px !important;
|
|
padding: 6px 10px !important;
|
|
width: 100%;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme input[type="text"]::placeholder {
|
|
color: #4c4c4c;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme .description,
|
|
.wpaw-tab-content.dark-theme .components-checkbox-control__help {
|
|
color: #6c6c6c;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
/* Dark Theme Cost Card overrides */
|
|
.wpaw-tab-content.dark-theme .wpaw-cost-card {
|
|
background: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme .wpaw-cost-stat {
|
|
border-top: unset;
|
|
border-right: unset;
|
|
border-left: unset;
|
|
border-bottom-color: #6c6c6c;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme .wpaw-cost-stat label {
|
|
color: #6c6c6c;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme .wpaw-cost-value {
|
|
font-family: ui-monospace, monospace;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Ensure no white flash on dark tabs */
|
|
.wpaw-tab-content.dark-theme .components-panel__body {
|
|
background: #1d2227;
|
|
}
|
|
|
|
/* ===========================
|
|
SEO SECTION STYLES
|
|
=========================== */
|
|
.wpaw-config-divider {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 16px 0 8px;
|
|
padding: 16px 16px 5px;
|
|
border-top: 1px solid #3c3c3c;
|
|
}
|
|
|
|
.wpaw-config-divider span {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: #a7aaad;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-meta-info {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 8px;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wpaw-meta-info span {
|
|
font-size: 11px;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-meta-info span.good {
|
|
color: #4ade80;
|
|
}
|
|
|
|
.wpaw-meta-info span.warning {
|
|
color: #fbbf24;
|
|
}
|
|
|
|
.wpaw-meta-info .components-button {
|
|
font-size: 11px;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme textarea {
|
|
background: #252830 !important;
|
|
/* border: 1px solid #3c3c3c !important; */
|
|
color: #fff !important;
|
|
/* border-radius: 2px !important; */
|
|
/* padding: 8px 10px !important; */
|
|
width: 100%;
|
|
min-height: 60px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.wpaw-tab-content.dark-theme textarea::placeholder {
|
|
color: #4c4c4c;
|
|
}
|
|
|
|
/* SEO Audit Styles */
|
|
.wpaw-seo-audit-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.wpaw-seo-audit-header label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: #a7aaad;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-seo-audit-results {
|
|
background: #252830;
|
|
border-radius: 4px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.wpaw-seo-score {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: center;
|
|
margin-bottom: 12px;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.wpaw-seo-score.good {
|
|
background: rgba(74, 222, 128, 0.1);
|
|
}
|
|
|
|
.wpaw-seo-score.warning {
|
|
background: rgba(251, 191, 36, 0.1);
|
|
}
|
|
|
|
.wpaw-seo-score.poor {
|
|
background: rgba(248, 113, 113, 0.1);
|
|
}
|
|
|
|
.wpaw-seo-score .score-value {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-seo-score.good .score-value {
|
|
color: #4ade80;
|
|
}
|
|
|
|
.wpaw-seo-score.warning .score-value {
|
|
color: #fbbf24;
|
|
}
|
|
|
|
.wpaw-seo-score.poor .score-value {
|
|
color: #f87171;
|
|
}
|
|
|
|
.wpaw-seo-score .score-label {
|
|
font-size: 14px;
|
|
color: #6c6c6c;
|
|
margin-left: 2px;
|
|
}
|
|
|
|
.wpaw-seo-stats {
|
|
display: flex;
|
|
gap: 16px;
|
|
margin-bottom: 12px;
|
|
padding-bottom: 12px;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.wpaw-seo-stat {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.wpaw-seo-stat .stat-label {
|
|
display: block;
|
|
font-size: 10px;
|
|
color: #6c6c6c;
|
|
text-transform: uppercase;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.wpaw-seo-stat .stat-value {
|
|
display: block;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-seo-checks {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.wpaw-seo-check {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-seo-check .check-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.wpaw-seo-check.passed .check-icon {
|
|
background: rgba(74, 222, 128, 0.2);
|
|
color: #4ade80;
|
|
}
|
|
|
|
.wpaw-seo-check.failed .check-icon {
|
|
background: rgba(248, 113, 113, 0.2);
|
|
color: #f87171;
|
|
}
|
|
|
|
.wpaw-seo-check .check-label {
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-meta-info>button.components-button.is-secondary.is-small {
|
|
outline: unset !important;
|
|
color: #fbbf24;
|
|
border: 1px solid #fbbf24;
|
|
box-shadow: unset !important;
|
|
}
|
|
|
|
/* SEO Tab Styles */
|
|
.wpaw-seo-tab {
|
|
padding: 0;
|
|
}
|
|
|
|
.wpaw-seo-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
background: #1a1a20;
|
|
}
|
|
|
|
.wpaw-seo-header h3 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
flex: 1;
|
|
}
|
|
|
|
.wpaw-back-btn {
|
|
background: none;
|
|
border: 1px solid #4c4c4c;
|
|
color: #a7aaad;
|
|
padding: 6px 12px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wpaw-back-btn:hover {
|
|
background: #3c3c3c;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-seo-section {
|
|
padding: 16px;
|
|
border-bottom: 1px solid #2a2a30;
|
|
}
|
|
|
|
.wpaw-seo-section h4 {
|
|
margin: 0 0 12px 0;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: #a7aaad;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-seo-field {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-seo-field input,
|
|
.wpaw-seo-field textarea {
|
|
width: 100%;
|
|
background: #252830;
|
|
border: 1px solid #3c3c3c;
|
|
color: #fff;
|
|
padding: 10px 12px;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.wpaw-seo-field input:focus,
|
|
.wpaw-seo-field textarea:focus {
|
|
outline: none;
|
|
border-color: #6366f1;
|
|
}
|
|
|
|
.wpaw-char-count {
|
|
display: block;
|
|
font-size: 11px;
|
|
color: #6c6c6c;
|
|
text-align: right;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.wpaw-seo-preview {
|
|
background: #252830;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 4px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.wpaw-seo-preview-title {
|
|
color: #8ab4f8;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
line-height: 1.3;
|
|
margin-bottom: 4px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.wpaw-seo-preview-url {
|
|
color: #bdc1c6;
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-seo-preview-desc {
|
|
color: #a7aaad;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.wpaw-seo-stats {
|
|
display: flex;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.wpaw-stat-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 80px;
|
|
}
|
|
|
|
.wpaw-stat-label {
|
|
font-size: 11px;
|
|
color: #6c6c6c;
|
|
text-transform: uppercase;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.wpaw-stat-value {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-seo-actions {
|
|
padding: 16px;
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.wpaw-seo-actions .components-button {
|
|
flex: 1;
|
|
min-width: 140px;
|
|
}
|
|
|
|
/* SEO Audit Results (in SEO tab) */
|
|
.wpaw-seo-audit-results {
|
|
margin: 16px;
|
|
padding: 16px;
|
|
background: #252830;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.wpaw-seo-audit-results h4 {
|
|
margin: 0 0 12px 0;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-audit-score {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px;
|
|
background: #1a1a20;
|
|
border-radius: 4px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.wpaw-score-label {
|
|
font-size: 12px;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-score-value {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-score-value.good {
|
|
color: #4ade80;
|
|
}
|
|
|
|
.wpaw-score-value.warning {
|
|
color: #fbbf24;
|
|
}
|
|
|
|
.wpaw-score-value.bad {
|
|
color: #f87171;
|
|
}
|
|
|
|
.wpaw-audit-checks {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wpaw-issue-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
padding: 10px;
|
|
background: #1a1a20;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.wpaw-issue-item.good {
|
|
border-left: 3px solid #4ade80;
|
|
}
|
|
|
|
.wpaw-issue-item.error,
|
|
.wpaw-issue-item.failed {
|
|
border-left: 3px solid #f87171;
|
|
}
|
|
|
|
.wpaw-issue-item.warning {
|
|
border-left: 3px solid #fbbf24;
|
|
}
|
|
|
|
.wpaw-issue-severity {
|
|
width: 20px;
|
|
height: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
font-size: 12px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-issue-item.good .wpaw-issue-severity {
|
|
background: rgba(74, 222, 128, 0.2);
|
|
color: #4ade80;
|
|
}
|
|
|
|
.wpaw-issue-item.error .wpaw-issue-severity,
|
|
.wpaw-issue-item.failed .wpaw-issue-severity {
|
|
background: rgba(248, 113, 113, 0.2);
|
|
color: #f87171;
|
|
}
|
|
|
|
.wpaw-issue-item.warning .wpaw-issue-severity {
|
|
background: rgba(251, 191, 36, 0.2);
|
|
color: #fbbf24;
|
|
}
|
|
|
|
.wpaw-check-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.wpaw-check-name {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-check-message {
|
|
font-size: 12px;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-seo-audit-header .components-button.is-secondary.is-small {
|
|
outline: unset !important;
|
|
color: #4ade80;
|
|
border: 1px solid #4ade80;
|
|
box-shadow: unset !important;
|
|
}
|
|
|
|
.wpaw-spinning-icon svg {
|
|
animation: wpaw-spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes wpaw-spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* ===========================
|
|
WRITING MODE EMPTY STATE
|
|
=========================== */
|
|
.wpaw-writing-empty-state {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
padding: 2rem;
|
|
margin: 1rem 0;
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
|
|
.wpaw-empty-state-content {
|
|
text-align: center;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.wpaw-empty-state-icon {
|
|
font-size: 3rem;
|
|
display: block;
|
|
margin-bottom: 1rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.wpaw-empty-state-content h3 {
|
|
margin: 2rem 0 0.5rem 0;
|
|
font-size: 1.5rem;
|
|
color: #135e96;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wpaw-empty-state-content p {
|
|
color: #666;
|
|
margin: 0.5rem 0;
|
|
line-height: 1.5;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.wpaw-empty-state-button {
|
|
margin: 1.5rem 0 1rem 0 !important;
|
|
font-size: 1rem !important;
|
|
}
|
|
|
|
.wpaw-empty-state-hint {
|
|
font-size: 0.9rem !important;
|
|
margin-top: 1rem !important;
|
|
color: #888 !important;
|
|
}
|
|
|
|
.wpaw-sessions-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
margin: 1.5rem 0;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wpaw-new-chat-btn {
|
|
margin-top: 1rem !important;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 12px 16px;
|
|
background: #f0f6fc;
|
|
border: 1px solid #d0d7e2;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-item:hover {
|
|
background: #e8f0fa;
|
|
border-color: #2271b1;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-title {
|
|
font-size: 14px;
|
|
color: #1d2327;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-meta {
|
|
font-size: 12px;
|
|
color: #646970;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-delete {
|
|
background: transparent;
|
|
border: none;
|
|
color: #a7aaad;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
line-height: 1;
|
|
border-radius: 4px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wpaw-writing-empty-state .wpaw-session-delete:hover {
|
|
color: #d63638;
|
|
background: #f6f7f7;
|
|
}
|
|
|
|
.wpaw-link-button {
|
|
background: none;
|
|
border: none;
|
|
color: #2271b1;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
font: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
.wpaw-link-button:hover {
|
|
color: #135e96;
|
|
}
|
|
|
|
/* ===========================
|
|
CONTEXT INDICATOR
|
|
=========================== */
|
|
.wpaw-context-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0.25rem 1rem;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 11px;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.wpaw-context-info {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
|
|
/* .wpaw-context-count {
|
|
color: #0066cc;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.wpaw-context-tokens {
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-context-cost {
|
|
color: #a7aaad;
|
|
font-weight: 600;
|
|
} */
|
|
|
|
.wpaw-context-count,
|
|
.wpaw-context-tokens,
|
|
.wpaw-context-cost {
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-context-toggle {
|
|
background: none;
|
|
border: none;
|
|
color: #a7aaad;
|
|
cursor: pointer;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-size: 0.85rem;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.wpaw-context-toggle:hover {
|
|
background: rgba(0, 102, 204, 0.1);
|
|
}
|
|
|
|
.wpaw-command-input-wrapper.expanded {
|
|
transition: min-height 0.3s ease;
|
|
}
|
|
|
|
.wpaw-command-input-wrapper.expanded textarea {
|
|
transition: min-height 0.3s ease;
|
|
}
|
|
|
|
/* ===========================
|
|
FOCUS KEYWORD BAR
|
|
=========================== */
|
|
.wpaw-focus-keyword-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 6px 10px;
|
|
background: rgba(0, 0, 0, 0.15);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-focus-keyword-bar.wpaw-compact {
|
|
gap: 8px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.wpaw-focus-keyword-bar.wpaw-expanded {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.wpaw-fk-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.wpaw-fk-icon {
|
|
font-size: 14px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-fk-select,
|
|
.wpaw-fk-select-full {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s, background 0.2s;
|
|
}
|
|
|
|
.wpaw-fk-select {
|
|
flex: 1;
|
|
min-width: 0;
|
|
max-width: 180px;
|
|
}
|
|
|
|
.wpaw-fk-input {
|
|
flex: 1;
|
|
min-width: 0;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
padding: 6px 10px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
transition: border-color 0.2s, background 0.2s;
|
|
}
|
|
|
|
.wpaw-fk-input:focus {
|
|
border-color: #007cba;
|
|
outline: none;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.wpaw-fk-input::placeholder {
|
|
color: #888;
|
|
}
|
|
|
|
.wpaw-fk-select-full {
|
|
width: 100%;
|
|
}
|
|
|
|
.wpaw-fk-custom-input {
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
padding: 10px 12px;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
transition: border-color 0.2s, background 0.2s;
|
|
}
|
|
|
|
.wpaw-fk-custom-input:focus {
|
|
border-color: #007cba;
|
|
outline: none;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.wpaw-fk-custom-input::placeholder {
|
|
color: #888;
|
|
}
|
|
|
|
.wpaw-fk-select:focus,
|
|
.wpaw-fk-select-full:focus {
|
|
border-color: #007cba;
|
|
outline: none;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.wpaw-fk-select:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.wpaw-fk-select option,
|
|
.wpaw-fk-select-full option {
|
|
background: #1e1e1e;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-fk-cost {
|
|
color: #a7aaad;
|
|
font-size: 11px;
|
|
font-family: ui-monospace, monospace;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-fk-expand,
|
|
.wpaw-fk-collapse {
|
|
background: transparent;
|
|
border: none;
|
|
color: #a7aaad;
|
|
cursor: pointer;
|
|
padding: 4px 6px;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background 0.2s, color 0.2s;
|
|
}
|
|
|
|
.wpaw-fk-expand:hover,
|
|
.wpaw-fk-collapse:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-fk-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-weight: 600;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-fk-main-input {
|
|
width: 100%;
|
|
}
|
|
|
|
.wpaw-fk-custom-input {
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
color: #fff;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-fk-custom-input:focus {
|
|
border-color: #007cba;
|
|
outline: none;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.wpaw-fk-custom-input::placeholder {
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-fk-suggestions {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border-radius: 6px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.wpaw-fk-suggestions-label {
|
|
font-size: 11px;
|
|
color: #a7aaad;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-fk-suggestion-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.wpaw-fk-suggestion-item:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.wpaw-fk-suggestion-item.selected {
|
|
background: rgba(0, 124, 186, 0.2);
|
|
}
|
|
|
|
.wpaw-fk-radio {
|
|
color: #007cba;
|
|
font-size: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-fk-suggestion-text {
|
|
flex: 1;
|
|
color: #fff;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-fk-suggestion-source {
|
|
color: #666;
|
|
font-size: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-fk-stats {
|
|
display: flex;
|
|
gap: 8px;
|
|
font-size: 11px;
|
|
color: #a7aaad;
|
|
font-family: ui-monospace, monospace;
|
|
padding-top: 8px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.wpaw-fk-divider {
|
|
color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
/* ===========================
|
|
WELCOME SCREEN
|
|
=========================== */
|
|
.wpaw-welcome-screen {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem 1.5rem;
|
|
text-align: center;
|
|
min-height: 400px;
|
|
animation: fadeInUp 0.3s ease-out;
|
|
}
|
|
|
|
.wpaw-welcome-content {
|
|
max-width: 320px;
|
|
width: 100%;
|
|
}
|
|
|
|
.wpaw-welcome-icon {
|
|
display: block;
|
|
color: #2271b1;
|
|
}
|
|
|
|
.wpaw-welcome-icon svg {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
.wpaw-welcome-title {
|
|
margin: 0 0 0.5rem 0;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-welcome-subtitle {
|
|
margin: 0 0 1.5rem 0;
|
|
font-size: 0.95rem;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-welcome-input {
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
margin-bottom: 1rem;
|
|
box-sizing: border-box;
|
|
transition: border-color 0.2s, background 0.2s;
|
|
}
|
|
|
|
.wpaw-welcome-input:focus {
|
|
outline: none;
|
|
border-color: #2271b1;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.wpaw-welcome-input::placeholder {
|
|
color: #888;
|
|
}
|
|
|
|
.wpaw-welcome-pills {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.wpaw-welcome-pills button {
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
|
|
.wpaw-welcome-pill {
|
|
flex: 1;
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
border-radius: 8px;
|
|
color: #a7aaad;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.wpaw-welcome-pill:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
border-color: rgba(255, 255, 255, 0.25);
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-welcome-pill.active {
|
|
background: rgba(34, 113, 177, 0.2);
|
|
border-color: #2271b1;
|
|
color: #2271b1;
|
|
}
|
|
|
|
.wpaw-session-list {
|
|
max-height: 35vh;
|
|
overflow-y: auto;
|
|
padding-right: 2px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-session-open-btn {
|
|
display: block;
|
|
min-width: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.wpaw-session-open-btn:disabled {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.wpaw-welcome-start-btn {
|
|
width: 100%;
|
|
padding: 12px 24px !important;
|
|
font-size: 14px !important;
|
|
font-weight: 600 !important;
|
|
}
|
|
|
|
/* ===========================
|
|
SESSIONS LIST VIEW
|
|
=========================== */
|
|
.wpaw-sessions-list-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
padding: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wpaw-view-loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
color: #a7aaad;
|
|
font-size: 14px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.wpaw-sessions-header-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 1rem;
|
|
padding-bottom: 0.75rem;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.wpaw-sessions-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
margin: 0;
|
|
}
|
|
|
|
.wpaw-new-conversation-btn {
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
.wpaw-sessions-list {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wpaw-no-sessions {
|
|
text-align: center;
|
|
color: #a7aaad;
|
|
padding: 2rem;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* ===========================
|
|
UNCOMPLETED SESSIONS PANEL
|
|
=========================== */
|
|
.wpaw-uncompleted-sessions {
|
|
margin-top: 2rem;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.wpaw-sessions-header {
|
|
font-size: 12px;
|
|
color: #a7aaad;
|
|
margin-bottom: 0.75rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-session-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 6px;
|
|
margin-bottom: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wpaw-session-item:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.wpaw-session-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wpaw-session-title {
|
|
font-size: 13px;
|
|
color: #fff;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.wpaw-session-meta {
|
|
font-size: 11px;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-session-delete {
|
|
background: transparent;
|
|
border: none;
|
|
color: #72777a;
|
|
font-size: 18px;
|
|
cursor: pointer;
|
|
padding: 0 4px;
|
|
line-height: 1;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.wpaw-session-delete:hover {
|
|
color: #d63638;
|
|
}
|
|
|
|
/* ===========================
|
|
CONTEXTUAL ACTION CARDS
|
|
=========================== */
|
|
.wpaw-contextual-action {
|
|
display: flex;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
background: rgb(255 255 255 / 10%);
|
|
border: 2px dashed rgba(255 255 255 / 25%);
|
|
border-radius: 8px;
|
|
margin: 1rem 0;
|
|
color: white;
|
|
}
|
|
|
|
.wpaw-action-icon {
|
|
font-size: 2rem;
|
|
line-height: 1;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-action-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.wpaw-action-content h4 {
|
|
margin: 0 0 0.25rem 0;
|
|
font-weight: 600;
|
|
color: white;
|
|
}
|
|
|
|
.wpaw-action-content p {
|
|
margin: 0 0 0.75rem 0;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.wpaw-action-content .components-button {
|
|
background: white !important;
|
|
color: #667eea !important;
|
|
border: none !important;
|
|
font-weight: 600 !important;
|
|
padding: 0.5rem 1rem !important;
|
|
}
|
|
|
|
.wpaw-action-content .components-button:hover {
|
|
background: #f0f0f0 !important;
|
|
color: #5568d3 !important;
|
|
}
|
|
|
|
/* Variant for different intent types */
|
|
.wpaw-contextual-action.intent-create-outline {
|
|
background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
|
|
}
|
|
|
|
.wpaw-contextual-action.intent-start-writing {
|
|
background: linear-gradient(135deg, #d63638 0%, #8a1e1e 100%);
|
|
}
|
|
|
|
.wpaw-contextual-action.intent-refine-content {
|
|
background: linear-gradient(135deg, #2271b1 0%, #00a32a 100%);
|
|
}
|
|
|
|
/* ===========================
|
|
INFO MESSAGE STYLES
|
|
=========================== */
|
|
.wpaw-ai-item[data-type="info"] {
|
|
background: #e7f3ff;
|
|
border-left: 4px solid #2271b1;
|
|
padding: 0.75rem 1rem;
|
|
margin: 0.5rem 0;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.wpaw-ai-item[data-type="info"] .wpaw-ai-content {
|
|
color: #1e1e1e;
|
|
font-size: 0.9rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* ===========================
|
|
SMOOTH TRANSITIONS
|
|
=========================== */
|
|
.wpaw-writing-empty-state,
|
|
.wpaw-context-indicator,
|
|
.wpaw-contextual-action {
|
|
animation: fadeInUp 0.3s ease-out;
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(10px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* ===========================
|
|
P2: TYPING ANIMATION
|
|
=========================== */
|
|
@keyframes wpaw-typewriter-cursor {
|
|
|
|
0%,
|
|
100% {
|
|
border-color: transparent;
|
|
}
|
|
|
|
50% {
|
|
border-color: #a7aaad;
|
|
}
|
|
}
|
|
|
|
.wpaw-typing-indicator {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 6px 12px;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 12px;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-typing-dots {
|
|
display: inline-flex;
|
|
gap: 3px;
|
|
}
|
|
|
|
.wpaw-typing-dots span {
|
|
width: 5px;
|
|
height: 5px;
|
|
background: #a7aaad;
|
|
border-radius: 50%;
|
|
animation: wpaw-typing-bounce 1.2s infinite;
|
|
}
|
|
|
|
.wpaw-typing-dots span:nth-child(2) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
.wpaw-typing-dots span:nth-child(3) {
|
|
animation-delay: 0.4s;
|
|
}
|
|
|
|
@keyframes wpaw-typing-bounce {
|
|
|
|
0%,
|
|
60%,
|
|
100% {
|
|
transform: translateY(0);
|
|
opacity: 0.4;
|
|
}
|
|
|
|
30% {
|
|
transform: translateY(-4px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/* P3: KEYBOARD HINTS */
|
|
.wpaw-keyboard-hints {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
padding: 6px 0 0;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 10px;
|
|
color: #50575e;
|
|
}
|
|
|
|
.wpaw-kbd {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.wpaw-kbd kbd {
|
|
background: #2c2c2c;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 2px;
|
|
padding: 1px 4px;
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 10px;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
/* ===================================
|
|
PROACTIVE SUGGESTIONS UI
|
|
=================================== */
|
|
|
|
.wpaw-suggestions-banner {
|
|
background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
|
|
border-radius: 8px;
|
|
margin: 8px 12px;
|
|
padding: 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.wpaw-suggestion-analyzing {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: #fff;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-suggestion-icon {
|
|
font-size: 16px;
|
|
animation: pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.5; }
|
|
}
|
|
|
|
.wpaw-suggestion-item {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-radius: 6px;
|
|
margin-bottom: 8px;
|
|
padding: 10px;
|
|
border-left: 3px solid #4caf50;
|
|
}
|
|
|
|
.wpaw-suggestion-item.wpaw-priority-high {
|
|
border-left-color: #f44336;
|
|
}
|
|
|
|
.wpaw-suggestion-item.wpaw-priority-medium {
|
|
border-left-color: #ff9800;
|
|
}
|
|
|
|
.wpaw-suggestion-item.wpaw-priority-low {
|
|
border-left-color: #4caf50;
|
|
}
|
|
|
|
.wpaw-suggestion-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-suggestion-type-icon {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.wpaw-suggestion-location {
|
|
font-size: 11px;
|
|
color: #a8c8ea;
|
|
flex: 1;
|
|
}
|
|
|
|
.wpaw-suggestion-priority {
|
|
font-size: 9px;
|
|
text-transform: uppercase;
|
|
padding: 2px 6px;
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-suggestion-priority:empty {
|
|
display: none;
|
|
}
|
|
|
|
.wpaw-suggestion-content {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-suggestion-issue {
|
|
font-size: 12px;
|
|
color: #e0e0e0;
|
|
margin: 0 0 4px 0;
|
|
}
|
|
|
|
.wpaw-suggestion-text {
|
|
font-size: 12px;
|
|
color: #fff;
|
|
margin: 0;
|
|
font-style: italic;
|
|
}
|
|
|
|
.wpaw-suggestion-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wpaw-suggestion-actions .wpaw-btn {
|
|
flex: 1;
|
|
padding: 6px 12px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
cursor: pointer;
|
|
transition: opacity 0.2s;
|
|
}
|
|
|
|
.wpaw-suggestion-actions .wpaw-btn:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.wpaw-suggestion-actions .wpaw-btn-apply {
|
|
background: #4caf50;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-suggestion-actions .wpaw-btn-dismiss {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-suggestion-dismiss-all {
|
|
width: 100%;
|
|
padding: 8px;
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 4px;
|
|
color: #a8c8ea;
|
|
font-size: 11px;
|
|
cursor: pointer;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.wpaw-suggestion-dismiss-all:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
/* ===================================
|
|
COMMAND PALETTE (Cmd+Shift+P)
|
|
=================================== */
|
|
|
|
.wpaw-command-palette-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
z-index: 100000;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
padding-top: 15vh;
|
|
}
|
|
|
|
.wpaw-command-palette {
|
|
width: 500px;
|
|
max-width: 90vw;
|
|
background: #2d2d2d;
|
|
border-radius: 12px;
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
|
|
overflow: hidden;
|
|
animation: wpaw-palette-slide-in 0.15s ease-out;
|
|
}
|
|
|
|
@keyframes wpaw-palette-slide-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-20px) scale(0.95);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
.wpaw-command-palette-input {
|
|
width: 100%;
|
|
padding: 16px 20px;
|
|
background: transparent;
|
|
border: none;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
font-family: inherit;
|
|
outline: none;
|
|
}
|
|
|
|
.wpaw-command-palette-input::placeholder {
|
|
color: #888;
|
|
}
|
|
|
|
.wpaw-command-palette-results {
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wpaw-command-palette-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px 20px;
|
|
cursor: pointer;
|
|
transition: background 0.1s;
|
|
}
|
|
|
|
.wpaw-command-palette-item:hover,
|
|
.wpaw-command-palette-item.selected {
|
|
background: #3c3c3c;
|
|
}
|
|
|
|
.wpaw-command-palette-item.selected {
|
|
background: #2271b1;
|
|
}
|
|
|
|
.wpaw-command-icon {
|
|
font-size: 18px;
|
|
width: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.wpaw-command-label {
|
|
font-size: 14px;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Scrollbar for command palette */
|
|
.wpaw-command-palette-results::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
.wpaw-command-palette-results::-webkit-scrollbar-track {
|
|
background: #2d2d2d;
|
|
}
|
|
|
|
.wpaw-command-palette-results::-webkit-scrollbar-thumb {
|
|
background: #4c4c4c;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.wpaw-command-palette-results::-webkit-scrollbar-thumb:hover {
|
|
background: #5c5c5c;
|
|
}
|
|
|
|
/* ===================================
|
|
PER-ACTION ACCEPT/REJECT
|
|
=================================== */
|
|
|
|
.wpaw-edit-plan-item {
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border-radius: 6px;
|
|
margin-bottom: 8px;
|
|
border-left: 3px solid #4a90d9;
|
|
}
|
|
|
|
.wpaw-edit-plan-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wpaw-edit-plan-action-type {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-buttons {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.wpaw-edit-plan-accept-btn,
|
|
.wpaw-edit-plan-reject-btn {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.wpaw-edit-plan-accept-btn {
|
|
background: #4caf50;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-edit-plan-accept-btn:hover {
|
|
background: #5cbf60;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.wpaw-edit-plan-reject-btn {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpaw-edit-plan-reject-btn:hover {
|
|
background: #f44336;
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-before,
|
|
.wpaw-edit-plan-item-after {
|
|
font-size: 11px;
|
|
color: #a7aaad;
|
|
margin: 4px 0;
|
|
padding: 4px 8px;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-before {
|
|
color: #ff8a80;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-after {
|
|
color: #69f0ae;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-target {
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
color: #a7aaad;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 10px;
|
|
cursor: pointer;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.wpaw-edit-plan-item-target:hover:not(:disabled) {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
}
|
|
|
|
/* ===================================
|
|
Block Outline Panel
|
|
=================================== */
|
|
|
|
.wpaw-outline-panel {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 280px;
|
|
background: #1a1a2e;
|
|
border-left: 1px solid #2a2a4a;
|
|
display: flex;
|
|
flex-direction: column;
|
|
z-index: 100;
|
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.wpaw-outline-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 16px;
|
|
background: #252545;
|
|
border-bottom: 1px solid #2a2a4a;
|
|
}
|
|
|
|
.wpaw-outline-title {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.wpaw-outline-close {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: none;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #a7aaad;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.wpaw-outline-close:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
}
|
|
|
|
.wpaw-outline-content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.wpaw-outline-empty {
|
|
padding: 24px 16px;
|
|
text-align: center;
|
|
color: #6b6b8a;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.wpaw-outline-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px 16px;
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.wpaw-outline-item:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.wpaw-outline-item.wpaw-outline-heading {
|
|
background: rgba(76, 175, 80, 0.05);
|
|
}
|
|
|
|
.wpaw-outline-item.wpaw-outline-heading:hover {
|
|
background: rgba(76, 175, 80, 0.1);
|
|
}
|
|
|
|
.wpaw-outline-item.wpaw-outline-heading[level="2"] {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.wpaw-outline-item.wpaw-outline-heading[level="3"] {
|
|
padding-left: 28px;
|
|
}
|
|
|
|
.wpaw-outline-item.wpaw-outline-heading[level="4"] {
|
|
padding-left: 40px;
|
|
}
|
|
|
|
.wpaw-outline-icon {
|
|
font-size: 14px;
|
|
margin-right: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.wpaw-outline-label {
|
|
font-size: 11px;
|
|
color: #8888aa;
|
|
font-weight: 500;
|
|
min-width: 50px;
|
|
}
|
|
|
|
.wpaw-outline-text {
|
|
font-size: 12px;
|
|
color: #c0c0d0;
|
|
margin-left: 8px;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.wpaw-outline-count {
|
|
font-size: 10px;
|
|
color: #6b6b8a;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.wpaw-outline-footer {
|
|
padding: 10px 16px;
|
|
background: #252545;
|
|
border-top: 1px solid #2a2a4a;
|
|
text-align: center;
|
|
}
|
|
|
|
.wpaw-outline-stats {
|
|
font-size: 11px;
|
|
color: #6b6b8a;
|
|
}
|
|
|
|
/* ===================================
|
|
User Preferences Section in Config
|
|
=================================== */
|
|
|
|
.wpaw-config-divider {
|
|
padding: 12px 0;
|
|
margin: 16px 0;
|
|
border-bottom: 1px solid #3c3c3c;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: #8888aa;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.wpaw-input {
|
|
padding: 8px 12px;
|
|
background: #2a2a4a;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 4px;
|
|
color: #e0e0e0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.wpaw-input:focus {
|
|
outline: none;
|
|
border-color: #4a90d9;
|
|
}
|
|
|
|
/* ===================================
|
|
Provider Transparency Display
|
|
=================================== */
|
|
|
|
.wpaw-provider-info {
|
|
color: #6b7280;
|
|
font-size: 11px;
|
|
font-family: ui-monospace, monospace;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.wpaw-provider-info:hover {
|
|
color: #3b82f6;
|
|
}
|
|
|
|
.wpaw-provider-badge {
|
|
margin-left: 2px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.wpaw-provider-badge[title*="warning"],
|
|
.wpaw-provider-badge[title*="Warning"],
|
|
.wpaw-provider-info:has(.wpaw-fallback) {
|
|
color: #f59e0b;
|
|
}
|
|
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: Mode Indicator Badge
|
|
=========================== */
|
|
|
|
/* Override WordPress editor-sidebar h3 shrinkage inside our panel */
|
|
#wp-agentic-writer\:wp-agentic-writer .interface-complementary-area h3,
|
|
#wp-agentic-writer\:wp-agentic-writer h3,
|
|
.wpaw-response-content h3,
|
|
.wpaw-messages-inner h3 {
|
|
font-size: 15px !important;
|
|
text-transform: none !important;
|
|
font-weight: 700 !important;
|
|
color: #e0e4ea !important;
|
|
margin-bottom: 0.5em !important;
|
|
letter-spacing: normal !important;
|
|
}
|
|
|
|
.wpaw-response-content h2 {
|
|
font-size: 17px !important;
|
|
color: #e8ecf2 !important;
|
|
}
|
|
|
|
.wpaw-response-content h4,
|
|
.wpaw-response-content h5,
|
|
.wpaw-response-content h6 {
|
|
font-size: 13px !important;
|
|
color: #d0d5dd !important;
|
|
}
|
|
|
|
.wpaw-mode-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 3px 10px;
|
|
border-radius: 12px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.wpaw-mode-badge.mode-chat {
|
|
background: rgba(96, 165, 250, 0.12);
|
|
color: #60a5fa;
|
|
border: 1px solid rgba(96, 165, 250, 0.25);
|
|
}
|
|
|
|
.wpaw-mode-badge.mode-planning {
|
|
background: rgba(251, 191, 36, 0.12);
|
|
color: #fbbf24;
|
|
border: 1px solid rgba(251, 191, 36, 0.25);
|
|
}
|
|
|
|
.wpaw-mode-badge.mode-writing {
|
|
background: rgba(74, 222, 128, 0.12);
|
|
color: #4ade80;
|
|
border: 1px solid rgba(74, 222, 128, 0.25);
|
|
}
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: Streaming Heartbeat
|
|
=========================== */
|
|
.wpaw-heartbeat-notice {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
margin: 8px 0;
|
|
background: rgba(251, 191, 36, 0.08);
|
|
border: 1px solid rgba(251, 191, 36, 0.2);
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
color: #fbbf24;
|
|
animation: fadeIn 0.3s ease;
|
|
}
|
|
|
|
.wpaw-heartbeat-notice .wpaw-heartbeat-icon {
|
|
animation: pulse-ring 2s infinite;
|
|
}
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: Slash Command Hint
|
|
=========================== */
|
|
.wpaw-input-hint {
|
|
position: absolute;
|
|
bottom: 100%;
|
|
left: 12px;
|
|
right: 12px;
|
|
padding: 6px 10px;
|
|
background: #252830;
|
|
border: 1px solid #3d4450;
|
|
border-bottom: none;
|
|
border-radius: 8px 8px 0 0;
|
|
font-size: 11px;
|
|
color: #6b7a8d;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.wpaw-input-hint kbd {
|
|
background: #3d4450;
|
|
color: #a0aec0;
|
|
padding: 1px 5px;
|
|
border-radius: 3px;
|
|
font-size: 10px;
|
|
font-family: inherit;
|
|
}
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: Provider Fallback Warning
|
|
=========================== */
|
|
.wpaw-provider-warning {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
margin: 8px 0;
|
|
background: rgba(251, 146, 60, 0.08);
|
|
border: 1px solid rgba(251, 146, 60, 0.2);
|
|
border-left: 3px solid #fb923c;
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
color: #fdba74;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.wpaw-provider-warning a {
|
|
color: #fb923c;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: DB Health Notice
|
|
=========================== */
|
|
.wpaw-health-notice {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
margin: 8px 0;
|
|
background: rgba(220, 38, 38, 0.06);
|
|
border: 1px solid rgba(220, 38, 38, 0.2);
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
color: #fca5a5;
|
|
}
|
|
|
|
.wpaw-health-notice a {
|
|
color: #ef4444;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: Confirm Modal for Writing
|
|
=========================== */
|
|
.wpaw-write-confirm-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 1200;
|
|
background: rgba(10, 16, 27, 0.75);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 16px;
|
|
animation: fadeIn 0.2s ease;
|
|
}
|
|
|
|
.wpaw-write-confirm-modal {
|
|
width: 100%;
|
|
max-width: 380px;
|
|
background: #1e2530;
|
|
color: #e5e7eb;
|
|
border: 1px solid #334155;
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.wpaw-write-confirm-title {
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wpaw-write-confirm-body {
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: #94a3b8;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.wpaw-write-confirm-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
/* ===========================
|
|
AUDIT FIXES: Response content dark theme
|
|
=========================== */
|
|
.wpaw-response-content {
|
|
line-height: 1.6;
|
|
word-wrap: break-word;
|
|
white-space: normal;
|
|
color: #dce0e8;
|
|
}
|
|
|
|
.wpaw-response-content>* {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.wpaw-response-content p {
|
|
margin: 0 0 8px;
|
|
}
|
|
|
|
.wpaw-response-content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Plan section title in dark theme */
|
|
.wpaw-plan-section-title {
|
|
font-weight: 600;
|
|
margin-bottom: 4px;
|
|
color: #e0e4ea;
|
|
}
|
|
|
|
.wpaw-plan-section-desc {
|
|
color: #8b95a5;
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Config summary dark */
|
|
.wpaw-plan-config-summary {
|
|
margin-bottom: 12px;
|
|
padding: 10px 12px;
|
|
background: #161a20;
|
|
border: 1px solid #2d3a4a;
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.wpaw-config-summary-item {
|
|
color: #9aa5b4;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
margin-bottom: 4px;
|
|
font-size: 11.5px;
|
|
}
|
|
|
|
.wpaw-config-summary-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|