Skip to content

Commit e5ea7e5

Browse files
committed
Fix button and bump version
1 parent 17f8c9e commit e5ea7e5

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divvun-runtime"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2024"
55
repository = "https://github.com/divvun/divvun-runtime"
66
license = "MIT OR Apache-2.0"

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divvun-runtime-cli"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2024"
55
repository = "https://github.com/divvun/divvun-runtime"
66
license = "GPL-3.0"

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divvun-runtime-macros"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2024"
55

66
[lib]

playground/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divvun-rt-playground"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2024"

playground/src/App.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -368,20 +368,20 @@ button:disabled {
368368
white-space: nowrap;
369369
}
370370

371-
.copy-button {
372-
padding: 4px 8px;
371+
.step-header .toggle-btn {
373372
margin-left: 8px;
374-
font-size: 12px;
375-
background-color: transparent;
376-
border: 1px solid transparent;
377-
color: #999;
373+
padding: 4px 12px;
374+
font-size: 11px;
375+
background: #2d2d30;
376+
border: 1px solid #3e3e42;
377+
border-radius: 0;
378+
color: #888;
378379
cursor: pointer;
379380
transition: all 0.2s;
380381
}
381382

382-
.copy-button:hover {
383-
background-color: #3e3e42;
384-
border-color: #555;
383+
.step-header .toggle-btn:hover {
384+
background: #383838;
385385
color: #cccccc;
386386
}
387387

playground/src/components/PipelineOutput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@ export function PipelineOutput(
179179
</span>
180180
<button
181181
type="button"
182-
class="copy-button"
182+
class="toggle-btn"
183183
onClick={(e) => copyContent(step, i, e)}
184184
title="Copy content"
185185
>
186-
{copiedIndex === i ? "" : "📋"}
186+
{copiedIndex === i ? "Copied" : "Copy"}
187187
</button>
188188
</div>
189189
{isExpanded && (

0 commit comments

Comments
 (0)