1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-14 00:59:06 +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> </Expandable>
</div> </div>
<Button <Button
class="table-element-form__add-field"
prepend-icon="baserow-icon-plus" prepend-icon="baserow-icon-plus"
type="link" type="link"
size="tiny" size="tiny"

View file

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

View file

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

View file

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

View file

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