Skip to content

Commit 9a6eb12

Browse files
committed
v1.7.2: mobile responsive polish
Gradient fade on tab bar edge as scroll affordance, nowrap session meta items, touch-friendly icon buttons (36px min).
1 parent 9259efe commit 9a6eb12

3 files changed

Lines changed: 26 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-knowledge",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Cross-session memory and recall for AI agents — git-synced knowledge base, knowledge graph, confidence scoring, hybrid semantic+TF-IDF search, auto-distillation with secrets scrubbing",
55
"type": "module",
66
"main": "dist/index.js",

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"url": "https://github.com/keshrath/agent-knowledge",
77
"source": "github"
88
},
9-
"version": "1.7.1",
9+
"version": "1.7.2",
1010
"packages": [
1111
{
1212
"registryType": "npm",
1313
"identifier": "agent-knowledge",
14-
"version": "1.7.1",
14+
"version": "1.7.2",
1515
"transport": {
1616
"type": "stdio"
1717
}

src/ui/styles.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1933,6 +1933,9 @@ h1 {
19331933
scrollbar-width: none;
19341934
gap: 0;
19351935
padding: 0 8px;
1936+
position: relative;
1937+
mask-image: linear-gradient(to right, black calc(100% - 32px), transparent);
1938+
-webkit-mask-image: linear-gradient(to right, black calc(100% - 32px), transparent);
19361939
}
19371940
.tab-bar::-webkit-scrollbar {
19381941
display: none;
@@ -2003,6 +2006,26 @@ h1 {
20032006
.sessions-list .session-card {
20042007
padding: 10px 12px;
20052008
}
2009+
.session-card .session-meta {
2010+
flex-wrap: wrap;
2011+
gap: 6px;
2012+
}
2013+
.session-card .session-meta-item {
2014+
white-space: nowrap;
2015+
}
2016+
.session-card .session-header {
2017+
flex-wrap: wrap;
2018+
gap: 4px;
2019+
}
2020+
2021+
/* -- Icon buttons: touch-friendly -- */
2022+
.icon-btn {
2023+
min-width: 36px;
2024+
min-height: 36px;
2025+
display: inline-flex;
2026+
align-items: center;
2027+
justify-content: center;
2028+
}
20062029
.search-bar {
20072030
max-width: 100%;
20082031
}

0 commit comments

Comments
 (0)