personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: restore missing CSS styles for search app

Added tab navigation and input area styles that were lost during the app
migration when review.css was removed. Styles are kept within the app
template.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+75
+75
apps/search/workspace.html
··· 1 1 <style> 2 + /* Tab navigation */ 3 + .tabs { 4 + border-bottom: 2px solid #e0e0e0; 5 + margin-bottom: 1em; 6 + display: flex; 7 + flex-wrap: nowrap; 8 + align-items: center; 9 + } 10 + 11 + .tab { 12 + flex: 1 1 auto; 13 + padding: 10px 12px; 14 + margin-right: 4px; 15 + background: #f5f5f5; 16 + border: 1px solid #ddd; 17 + border-bottom: none; 18 + cursor: pointer; 19 + border-radius: 4px 4px 0 0; 20 + white-space: nowrap; 21 + transition: background-color 0.2s; 22 + text-decoration: none; 23 + color: inherit; 24 + overflow: hidden; 25 + text-overflow: ellipsis; 26 + min-width: 0; 27 + } 28 + 29 + .tab:hover { 30 + background: #e8e8e8; 31 + } 32 + 33 + .tab.active { 34 + background: white; 35 + border-bottom: 2px solid white; 36 + margin-bottom: -2px; 37 + font-weight: bold; 38 + } 39 + 40 + /* Input area */ 41 + .input-area { 42 + display: flex; 43 + gap: 0.5em; 44 + margin-bottom: 1em; 45 + } 46 + 47 + .input-area input[type="text"] { 48 + flex: 1; 49 + padding: 0.75em; 50 + border-radius: 12px; 51 + border: 1px solid #ccc; 52 + font-family: inherit; 53 + outline: none; 54 + box-sizing: border-box; 55 + } 56 + 57 + .input-area input[type="text"]:focus { 58 + border-color: #007bff; 59 + box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); 60 + } 61 + 62 + .input-area button { 63 + padding: 0.75em 1.5em; 64 + background: #007bff; 65 + color: white; 66 + border: none; 67 + border-radius: 12px; 68 + cursor: pointer; 69 + font-weight: 500; 70 + } 71 + 72 + .input-area button:hover { 73 + background: #0056b3; 74 + } 75 + 76 + /* Results table */ 2 77 #resultsTable { width:100%; border-collapse:collapse; margin-top:1em; } 3 78 #resultsTable th, #resultsTable td { padding:8px; border-bottom:1px solid #ddd; } 4 79 #resultsTable td.date-cell { white-space:nowrap; cursor:pointer; }