Skip to content

Commit

Permalink
ref: glyphicon-export => fa-archive
Browse files Browse the repository at this point in the history
  • Loading branch information
theus77 committed Feb 20, 2024
1 parent 32fa3f4 commit 7cb1b45
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="card card-{{ theme_color }} card-outline">
<div class="card-header">
<h3>
<i class="glyphicon glyphicon-export"></i>
<i class="fa fa-archive"></i>
{{ 'views.elasticsearch.export-search.title'|trans }}
</h3>
</div>
Expand Down
2 changes: 1 addition & 1 deletion EMS/core-bundle/src/Form/Form/ExportDocumentsType.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
->add('export', SubmitEmsType::class, [
'label' => 'Export '.$data->getContentType()->getPluralName(),
'attr' => ['class' => 'btn btn-primary btn-sm '],
'icon' => 'glyphicon glyphicon-export',
'icon' => 'fa fa-archive',
]);
}
}
24 changes: 12 additions & 12 deletions EMS/core-bundle/src/Form/Form/SearchFormType.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,15 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
]);

$builder->add('search', SubmitEmsType::class, [
'attr' => [
'class' => 'btn btn-primary btn-md',
],
'icon' => 'fa fa-search',
'attr' => [
'class' => 'btn btn-primary btn-md',
],
'icon' => 'fa fa-search',
])->add('exportResults', SubmitEmsType::class, [
'attr' => [
'class' => 'btn btn-primary btn-sm',
],
'icon' => 'glyphicon glyphicon-export',
'attr' => [
'class' => 'btn btn-primary btn-sm',
],
'icon' => 'fa fa-archive',
])->add('environments', EnvironmentPickerType::class, [
'multiple' => true,
'required' => false,
Expand All @@ -133,10 +133,10 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
]);
if (!$options['savedSearch']) {
$builder->add('save', SubmitEmsType::class, [
'attr' => [
'class' => 'btn btn-primary btn-md',
],
'icon' => 'fa fa-save',
'attr' => [
'class' => 'btn btn-primary btn-md',
],
'icon' => 'fa fa-save',
]);
}
}
Expand Down

0 comments on commit 7cb1b45

Please sign in to comment.