codexmate 0.0.33 → 0.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,39 @@
1
- /* webhook 行 — 对齐暖色设计系统 */
1
+ /* ============================================
2
+ Webhook 模态框 — 极简设计
3
+ ============================================ */
4
+
5
+ /* Webhook 事件复选框列表 */
6
+ .webhook-events-checkbox-list {
7
+ display: flex;
8
+ flex-direction: column;
9
+ gap: 4px;
10
+ padding: 4px 0;
11
+ }
12
+
13
+ .webhook-event-checkbox-item {
14
+ display: inline-flex;
15
+ align-items: center;
16
+ gap: 10px;
17
+ padding: 10px 14px;
18
+ font-size: 14px;
19
+ color: var(--color-text-secondary);
20
+ cursor: pointer;
21
+ border-radius: 10px;
22
+ transition: all 0.15s ease;
23
+ }
24
+
25
+ .webhook-event-checkbox-item:hover {
26
+ background: rgba(137, 111, 94, 0.06);
27
+ }
28
+
29
+ .webhook-event-checkbox-item input[type="checkbox"] {
30
+ width: 18px;
31
+ height: 18px;
32
+ accent-color: var(--color-brand);
33
+ cursor: pointer;
34
+ }
35
+
36
+ /* 保留兼容旧组件的样式 */
2
37
  .webhook-row {
3
38
  display: flex;
4
39
  align-items: center;
@@ -30,7 +65,6 @@
30
65
  color: var(--color-text-muted);
31
66
  }
32
67
 
33
- /* 只读展示行 */
34
68
  .webhook-readonly-row {
35
69
  display: flex;
36
70
  align-items: flex-start;
@@ -71,11 +105,11 @@
71
105
 
72
106
  .webhook-event-tag {
73
107
  display: inline-block;
74
- padding: 2px 8px;
108
+ padding: 4px 10px;
75
109
  border-radius: 999px;
76
110
  border: 1px solid var(--color-border);
77
111
  background: var(--color-brand-light);
78
112
  color: var(--color-brand-dark);
79
- font-size: var(--font-size-caption);
113
+ font-size: 12px;
80
114
  font-weight: var(--font-weight-secondary);
81
115
  }