mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
fix(editor): Transparentize tertiary button on Usage page (#5033)
This commit is contained in:
parent
52077e2c45
commit
d6bc760ab4
|
@ -152,6 +152,7 @@ const onDialogOpened = () => {
|
||||||
|
|
||||||
<div :class="$style.buttons">
|
<div :class="$style.buttons">
|
||||||
<n8n-button
|
<n8n-button
|
||||||
|
:class="$style.buttonTertiary"
|
||||||
@click="onAddActivationKey"
|
@click="onAddActivationKey"
|
||||||
v-if="usageStore.canUserActivateLicense"
|
v-if="usageStore.canUserActivateLicense"
|
||||||
type="tertiary"
|
type="tertiary"
|
||||||
|
@ -279,6 +280,13 @@ div[class*='info'] > span > span:last-child {
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
padding: 0 0 0 var(--spacing-4xs);
|
padding: 0 0 0 var(--spacing-4xs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.buttonTertiary {
|
||||||
|
&,
|
||||||
|
&:hover {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
Loading…
Reference in a new issue