1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-07 06:15:36 +00:00

Make add buttons consistent

This commit is contained in:
Afonso Silva 2023-11-20 14:17:57 +00:00
parent 170745758f
commit 10fe6aa7b1
5 changed files with 10 additions and 8 deletions
web-frontend/modules
builder
components
elements/components/forms/general
event
locales
core/assets/scss/components/builder

View file

@ -113,7 +113,6 @@
</Expandable>
</div>
<Button
class="table-element-form__add-field"
prepend-icon="baserow-icon-plus"
type="link"
size="tiny"

View file

@ -33,7 +33,6 @@
type="link"
prepend-icon="baserow-icon-plus"
:loading="addingAction"
class="margin-top-1"
@click="addWorkflowAction"
>
{{ $t('event.addAction') }}

View file

@ -351,7 +351,7 @@
"urlPlaceholder": "Enter text..."
},
"event": {
"addAction": "Add action"
"addAction": "add action"
},
"collectionFieldType": {
"text": "Text",

View file

@ -53,8 +53,3 @@
flex: 1;
}
}
.table-element-form__add-field {
color: $palette-neutral-800;
margin-top: 6px;
}

View file

@ -6,3 +6,12 @@
.side-panel {
padding: 15px;
}
.side-panels__panel .button.button--link {
color: $palette-neutral-800;
margin-top: 6px;
&:hover {
color: $color-neutral-900;
}
}