Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNupur Agrawal <nupur202000@gmail.com>2019-06-04 09:12:01 +0300
committerMaurĂ­cio Meneghini Fauth <mauricio@fauth.dev>2019-06-06 23:30:31 +0300
commit200e709f1696f0685dbd3939c98e0bb1280876a9 (patch)
tree35a38cc87135b4c108db58ac1c148cfbb421bf4c /templates/filter.twig
parentba1eb7281c0dc9bbbd2043a681a043ad74207337 (diff)
applied grid structure to variables page
Signed-off-by: Nupur Agrawal <nupur202000@gmail.com>
Diffstat (limited to 'templates/filter.twig')
-rw-r--r--templates/filter.twig20
1 files changed, 12 insertions, 8 deletions
diff --git a/templates/filter.twig b/templates/filter.twig
index eee885074f..ce80221ad1 100644
--- a/templates/filter.twig
+++ b/templates/filter.twig
@@ -1,8 +1,12 @@
-<fieldset id="tableFilter">
- <legend>{% trans "Filters" %}</legend>
- <div class="formelement">
- <label for="filterText">{% trans "Containing the word:" %}</label>
- <input name="filterText" type="text" id="filterText"
- value="{{ filter_value }}">
- </div>
-</fieldset>
+<div class="row">
+ <div class="col-12">
+ <fieldset id="tableFilter">
+ <legend>{% trans "Filters" %}</legend>
+ <div class="formelement">
+ <label for="filterText">{% trans "Containing the word:" %}</label>
+ <input name="filterText" type="text" id="filterText"
+ value="{{ filter_value }}">
+ </div>
+ </fieldset>
+ </div>
+</div>