Spaces:
Running
Running
secret rows as overview-style cards
Browse files- web/src/styles.css +8 -6
web/src/styles.css
CHANGED
|
@@ -134,12 +134,14 @@ body {
|
|
| 134 |
.agent-pick:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--panel)); }
|
| 135 |
.agent-pick.on { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, var(--panel)); font-weight: 600; }
|
| 136 |
|
| 137 |
-
/* detected secrets/variables:
|
| 138 |
-
|
| 139 |
-
.secret-
|
| 140 |
-
.secret-
|
| 141 |
-
.secret-
|
| 142 |
-
.secret-desc
|
|
|
|
|
|
|
| 143 |
|
| 144 |
/* new-group: per-agent quantity cart */
|
| 145 |
.widget-sep { height: 1px; background: var(--border); margin: 1px 0; flex: none; }
|
|
|
|
| 134 |
.agent-pick:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--panel)); }
|
| 135 |
.agent-pick.on { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, var(--panel)); font-weight: 600; }
|
| 136 |
|
| 137 |
+
/* detected secrets/variables: overview-style cards — name on top, hairline,
|
| 138 |
+
description written directly below (borderless growing textarea) */
|
| 139 |
+
.secret-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
|
| 140 |
+
.secret-row { display: flex; flex-direction: column; gap: 8px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 10px 13px 9px; }
|
| 141 |
+
.secret-name { font-size: 12.5px; font-weight: 600; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
|
| 142 |
+
.secret-desc { display: block; width: 100%; resize: none; overflow: hidden; padding: 0; border: none; background: transparent; color: var(--text); font: inherit; font-size: 13px; line-height: 1.45; }
|
| 143 |
+
.secret-desc:focus { outline: none; }
|
| 144 |
+
.secret-desc::placeholder { font-style: italic; }
|
| 145 |
|
| 146 |
/* new-group: per-agent quantity cart */
|
| 147 |
.widget-sep { height: 1px; background: var(--border); margin: 1px 0; flex: none; }
|