@worca/ui 0.24.0 → 0.25.1
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.
- package/app/main.bundle.js +1319 -1291
- package/app/main.bundle.js.map +4 -4
- package/app/styles.css +24 -0
- package/package.json +1 -1
package/app/styles.css
CHANGED
|
@@ -2601,6 +2601,30 @@ sl-details.live-output-panel::part(content) {
|
|
|
2601
2601
|
width: 100%;
|
|
2602
2602
|
}
|
|
2603
2603
|
|
|
2604
|
+
/* Project picker in new-run form */
|
|
2605
|
+
.new-run-project-section {
|
|
2606
|
+
border-color: var(--accent, #3b82f6);
|
|
2607
|
+
border-width: 1px;
|
|
2608
|
+
}
|
|
2609
|
+
.project-readonly {
|
|
2610
|
+
display: flex;
|
|
2611
|
+
align-items: center;
|
|
2612
|
+
gap: 8px;
|
|
2613
|
+
font-size: 14px;
|
|
2614
|
+
font-weight: 500;
|
|
2615
|
+
color: var(--text);
|
|
2616
|
+
}
|
|
2617
|
+
.project-change-link {
|
|
2618
|
+
font-size: 12px;
|
|
2619
|
+
font-weight: 400;
|
|
2620
|
+
color: var(--accent, #3b82f6);
|
|
2621
|
+
text-decoration: none;
|
|
2622
|
+
cursor: pointer;
|
|
2623
|
+
}
|
|
2624
|
+
.project-change-link:hover {
|
|
2625
|
+
text-decoration: underline;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2604
2628
|
/* Template group labels */
|
|
2605
2629
|
.template-group-label {
|
|
2606
2630
|
display: block;
|