feat(automationPlugin): update background color to transparent and simplify button class

This commit is contained in:
Johannes Millan 2025-11-28 13:05:15 +01:00
parent 6042df7822
commit 7add7d3b47
2 changed files with 7 additions and 4 deletions

View file

@ -23,6 +23,11 @@
--pico-form-element-color: var(--text-color);
}
html,
body {
background-color: transparent;
}
/* Force primary button color */
button:not(.outline):not(.secondary):not(.contrast):not(.close-btn) {
background-color: var(--c-primary);
@ -69,7 +74,7 @@ body {
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
background-color: var(--bg-color);
background-color: transparent;
color: var(--text-color);
}

View file

@ -51,9 +51,7 @@ export function RuleList(props: RuleListProps) {
<button class="outline" onClick={props.onExport} style={{ 'margin-right': '0.5rem' }}>
Export
</button>
<button class="outline" onClick={props.onCreate}>
+ New Rule
</button>
<button onClick={props.onCreate}>+ New Rule</button>
</div>
</div>