Skip to content

Commit c613323

Browse files
committed
[NEW] Better tables styling for HERO theme
1 parent d898e90 commit c613323

12 files changed

+12
-12
lines changed

docs/templates/default/index.add.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<script src="{{ main_url }}/themes/default/js/focus.input.js"></script>
44
<form method="post">
55
<input type="hidden" name="action" value="create"/>
6-
<table class="table table-success table-striped">
6+
<table class="table table-success table-striped table-responsive">
77
<thead>
88
<tr>
99
<th scope="col">{{ langs.trans('Label') }}</th>

docs/templates/default/index.edit.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'base.html.twig' %}
22
{% block body %}
33
<form method="post">
4-
<table class="table table-success table-striped">
4+
<table class="table table-success table-striped table-responsive">
55
<thead>
66
<tr>
77
<th scope="col">{{ langs.trans('Label') }}</th>

docs/templates/default/index.view.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{{ count }}
1010
</h6>
1111
</div>
12-
<table class="table table-success table-striped">
12+
<table class="table table-success table-striped table-responsive">
1313
<thead>
1414
<tr>
1515
<th scope="col">{{ langs.trans('Label') }}</th>

docs/templates/default/records.add.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% if res %}
44
<form method="post">
55
<input type="hidden" name="action" value="create"/>
6-
<table class="table table-success table-striped">
6+
<table class="table table-success table-striped table-responsive">
77
<thead>
88
<tr>
99
<th scope="col">{{ langs.trans('Domain') }}</th>

docs/templates/default/records.edit.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<form method="post">
44
<input type="hidden" name="action" value="edit"/>
55
<input type="hidden" name="id" value="{{ res2.id }}"/>
6-
<table class="table table-success table-striped">
6+
<table class="table table-success table-striped table-responsive">
77
<thead>
88
<tr>
99
<th scope="col">{{ langs.trans('Domain') }}</th>

docs/templates/default/records.view.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{{ count }}
1010
</h6>
1111
</div>
12-
<table class="table table-success table-striped">
12+
<table class="table table-success table-striped table-responsive">
1313
<thead>
1414
<tr>
1515
<th scope="col">{{ langs.trans('Domain') }}</th>

docs/templates/hero/index.add.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<script src="{{ main_url }}/themes/default/js/focus.input.js"></script>
44
<form method="post">
55
<input type="hidden" name="action" value="create"/>
6-
<table class="table table-success table-striped">
6+
<table class="table table-info table-striped table-responsive">
77
<thead>
88
<tr>
99
<th scope="col">{{ langs.trans('Label') }}</th>

docs/templates/hero/index.edit.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends 'base.html.twig' %}
22
{% block body %}
33
<form method="post">
4-
<table class="table table-success table-striped">
4+
<table class="table table-info table-striped table-responsive">
55
<thead>
66
<tr>
77
<th scope="col">{{ langs.trans('Label') }}</th>

docs/templates/hero/index.view.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{{ count }}
1010
</h6>
1111
</div>
12-
<table class="table table-success table-striped">
12+
<table class="table table-info table-striped table-responsive">
1313
<thead>
1414
<tr>
1515
<th scope="col">{{ langs.trans('Label') }}</th>

docs/templates/hero/records.add.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% if res %}
44
<form method="post">
55
<input type="hidden" name="action" value="create"/>
6-
<table class="table table-success table-striped">
6+
<table class="table table-info table-striped table-responsive">
77
<thead>
88
<tr>
99
<th scope="col">{{ langs.trans('Domain') }}</th>

docs/templates/hero/records.edit.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<form method="post">
44
<input type="hidden" name="action" value="edit"/>
55
<input type="hidden" name="id" value="{{ res2.id }}"/>
6-
<table class="table table-success table-striped">
6+
<table class="table table-info table-striped table-responsive">
77
<thead>
88
<tr>
99
<th scope="col">{{ langs.trans('Domain') }}</th>

docs/templates/hero/records.view.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{{ count }}
1010
</h6>
1111
</div>
12-
<table class="table table-success table-striped">
12+
<table class="table table-info table-striped table-responsive">
1313
<thead>
1414
<tr>
1515
<th scope="col">{{ langs.trans('Domain') }}</th>

0 commit comments

Comments
 (0)