diff --git a/public/themes/bootstrap/scss/_common.scss b/public/themes/bootstrap/scss/_common.scss index 116f940309..de642b28ce 100644 --- a/public/themes/bootstrap/scss/_common.scss +++ b/public/themes/bootstrap/scss/_common.scss @@ -1781,14 +1781,6 @@ div#page_content div { } } -table.show_create { - margin-top: 1em; - - td { - border-right: 1px solid #bbb; - } -} - #alias_modal { table { width: 100%; diff --git a/public/themes/metro/scss/_common.scss b/public/themes/metro/scss/_common.scss index af1c4e482f..a63d959a28 100644 --- a/public/themes/metro/scss/_common.scss +++ b/public/themes/metro/scss/_common.scss @@ -2050,14 +2050,6 @@ div#page_content div { } } -table.show_create { - margin-top: 1em; - - td { - border-right: 1px solid #bbb; - } -} - #alias_modal { table th { vertical-align: middle; diff --git a/public/themes/original/scss/_common.scss b/public/themes/original/scss/_common.scss index cd4b788601..d4a9121c48 100644 --- a/public/themes/original/scss/_common.scss +++ b/public/themes/original/scss/_common.scss @@ -1784,14 +1784,6 @@ div#page_content div { } } -table.show_create { - margin-top: 1em; - - td { - border-right: 1px solid #bbb; - } -} - #alias_modal { table { width: 100%; diff --git a/public/themes/pmahomme/scss/_common.scss b/public/themes/pmahomme/scss/_common.scss index 43df5ed0fe..3f1652963a 100644 --- a/public/themes/pmahomme/scss/_common.scss +++ b/public/themes/pmahomme/scss/_common.scss @@ -1966,14 +1966,6 @@ div#page_content div { } } -table.show_create { - margin-top: 1em; - - td { - border-right: 1px solid #bbb; - } -} - #alias_modal { table { width: 100%; diff --git a/templates/database/structure/add_prefix.twig b/templates/database/structure/add_prefix.twig index 1217c00dbb..56fb11c782 100644 --- a/templates/database/structure/add_prefix.twig +++ b/templates/database/structure/add_prefix.twig @@ -1,15 +1,7 @@
{{ get_hidden_inputs(url_params) }} - -
- - - - - - -
{% trans 'Add prefix' %} - -
-
+
+ + +
diff --git a/templates/database/structure/change_prefix_form.twig b/templates/database/structure/change_prefix_form.twig index 9cd3b18ddd..725ce384a8 100644 --- a/templates/database/structure/change_prefix_form.twig +++ b/templates/database/structure/change_prefix_form.twig @@ -1,20 +1,11 @@
{{ get_hidden_inputs(url_params) }} - -
- - - - - - - - - -
{% trans 'From' %} - -
{% trans 'To' %} - -
-
+
+ + +
+
+ + +
diff --git a/templates/database/structure/copy_form.twig b/templates/database/structure/copy_form.twig index b53b7638b9..6424f43cf4 100644 --- a/templates/database/structure/copy_form.twig +++ b/templates/database/structure/copy_form.twig @@ -1,54 +1,49 @@
{{ get_hidden_inputs(url_params) }} -
- - {% for each_db in options %} {% endfor %} + -

+
+ {% trans 'Options:' %} +
+ + +
+
+ + +
+
+ + +
+
- +
+ + +
+
+ + +
+
+ + +
-
- - - - -
- - - - -
- - - - -

- - - - -
- - - - -
- - - - -

- - -
+
diff --git a/templates/database/structure/drop_form.twig b/templates/database/structure/drop_form.twig index d7bbdb363e..8a1e5eb0f1 100644 --- a/templates/database/structure/drop_form.twig +++ b/templates/database/structure/drop_form.twig @@ -1,23 +1,24 @@ -
- {{ get_hidden_inputs(url_params) }} +
+ + {{ get_hidden_inputs(url_params) }} + -
- - {% trans 'Do you really want to execute the following query?' %} - +
{% trans 'Do you really want to execute the following query?' %}
- {{ full_query|raw }} -
+
+
+
{{ full_query|raw }}
+
-
-
- - - +
+ + +
-
- + + -
- + +
diff --git a/templates/database/structure/empty_form.twig b/templates/database/structure/empty_form.twig index 0cf561c165..849d51280a 100644 --- a/templates/database/structure/empty_form.twig +++ b/templates/database/structure/empty_form.twig @@ -1,23 +1,24 @@ -
- {{ get_hidden_inputs(url_params) }} +
+ + {{ get_hidden_inputs(url_params) }} + -
- - {% trans 'Do you really want to execute the following query?' %} - +
{% trans 'Do you really want to execute the following query?' %}
- {{ full_query|raw }} -
+
+
+
{{ full_query|raw }}
+
-
-
- - - +
+ + +
-
- + + -
- + +
diff --git a/templates/database/structure/show_create.twig b/templates/database/structure/show_create.twig index 5ebed436fb..bf6368c8f5 100644 --- a/templates/database/structure/show_create.twig +++ b/templates/database/structure/show_create.twig @@ -1,47 +1,51 @@ -
+

{% trans 'Showing create queries' %}

{% if tables.tables is not empty %} -
- {% trans 'Tables' %} - - - - - - - - - {% for table in tables.tables %} +
+
{% trans 'Tables' %}
+
+
{% trans 'Table' %}{% trans 'Create table' %}
+ - - + + - {% endfor %} - -
{{ table.name|raw }}{{ table.show_create|raw }}{% trans 'Table' %}{% trans 'Create table' %}
-
+ + + {% for table in tables.tables %} + + {{ table.name|raw }} + {{ table.show_create|raw }} + + {% endfor %} + + +
+
{% endif %} {% if tables.views is not empty %} -
- {% trans 'Views' %} - - - - - - - - - {% for view in tables.views %} +
+
{% trans 'Views' %}
+
+
{% trans 'View' %}{% trans 'Create view' %}
+ - - + + - {% endfor %} - -
{{ view.name }}{{ view.show_create|raw }}{% trans 'View' %}{% trans 'Create view' %}
-
+ + + {% for view in tables.views %} + + {{ view.name }} + {{ view.show_create|raw }} + + {% endfor %} + + +
+
{% endif %}