Merge pull request #19690 from kamil-tekiela/Fix-new-table-name-CSS

Fix new table name CSS
This commit is contained in:
Maurício Meneghini Fauth 2025-05-05 16:16:55 -03:00 committed by GitHub
commit 60eb56b50d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 29 additions and 29 deletions

View File

@ -1107,7 +1107,8 @@ input#auto_increment_opt {
}
#table_name_col_no_outer {
margin-top: 45px;
display: flex;
flex-wrap: wrap;
}
#table_name_col_no {

View File

@ -1110,7 +1110,8 @@ input#auto_increment_opt {
}
#table_name_col_no_outer {
margin-top: 45px;
display: flex;
flex-wrap: wrap;
}
#table_name_col_no {

View File

@ -1313,7 +1313,8 @@ input#auto_increment_opt {
}
#table_name_col_no_outer {
margin-top: 45px;
display: flex;
flex-wrap: wrap;
}
#table_name_col_no {

View File

@ -17,32 +17,29 @@
{% if action == '/table/create' %}
<div id="table_name_col_no_outer">
<table id="table_name_col_no" class="table table-borderless tdblock">
<tr class="align-middle float-start">
<td>{{ t('Table name') }}:
<input type="text"
name="table"
size="40"
maxlength="64"
value="{{ table is defined ? table }}"
class="textfield" autofocus required>
</td>
<td>
{{ t('Add') }}
<input type="number"
id="added_fields"
name="added_fields"
size="2"
value="1"
min="1"
onfocus="this.select()">
{{ t('column(s)') }}
<input class="btn btn-secondary" type="button"
name="submit_num_fields"
value="{{ t('Go') }}">
</td>
</tr>
</table>
<span>
{{ t('Table name') }}:
<input type="text"
name="table"
size="40"
maxlength="64"
value="{{ table is defined ? table }}"
class="textfield" autofocus required>
</span>
<span>
{{ t('Add') }}
<input type="number"
id="added_fields"
name="added_fields"
size="2"
value="1"
min="1"
onfocus="this.select()">
{{ t('column(s)') }}
<input class="btn btn-secondary" type="button"
name="submit_num_fields"
value="{{ t('Go') }}">
</span>
</div>
{% endif %}
{% if content_cells is iterable %}