UNPKG

dynamic-interaction

Version:

Dynamic interaction 动态交互mcp,用于cursor、windsurf、trae 等 AI 智能编辑器 Agent 运行时交互使用

35 lines (29 loc) 854 B
/* components/common.css */ /* * Custom, non-obtrusive scrollbar for all panels and specific content areas. * This ensures a consistent look and feel for all scrollable elements. */ .panel::-webkit-scrollbar, #summary::-webkit-scrollbar { width: 8px; } .panel::-webkit-scrollbar-track, #summary::-webkit-scrollbar-track { background: transparent; } .panel::-webkit-scrollbar-thumb, #summary::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); border-radius: 4px; border: 2px solid transparent; background-clip: content-box; transition: background-color 0.2s ease; } .panel::-webkit-scrollbar-thumb:hover, #summary::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.4); } .panel::-webkit-scrollbar-corner, #summary::-webkit-scrollbar-corner { background: transparent; }