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:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-12-27 02:05:03 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-12-27 02:05:03 +0300
commitac4bfaebe75d048589d27b65d246b708a2df1594 (patch)
tree15f5619e8657127c166e4603e78cd50a9eaa0834 /templates/display
parent7152714b51bb62ef91f7c9212152f679e232210c (diff)
Remove some custom CSS utilities
Uses Bootstrap equivalents. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'templates/display')
-rw-r--r--templates/display/results/checkbox_and_links.twig12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/display/results/checkbox_and_links.twig b/templates/display/results/checkbox_and_links.twig
index e210fc21c9..3e41159667 100644
--- a/templates/display/results/checkbox_and_links.twig
+++ b/templates/display/results/checkbox_and_links.twig
@@ -9,7 +9,7 @@
{% if edit.url is not empty %}
<td class="text-center print_ignore edit_row_anchor{{ not edit.clause_is_unique ? ' nonunique' }}">
- <span class="nowrap">
+ <span class="text-nowrap">
{{ link_or_button(edit.url, edit.string) }}
{% if where_clause is not empty %}
<input type="hidden" class="where_clause" value="{{ where_clause }}">
@@ -20,7 +20,7 @@
{% if copy.url is not empty %}
<td class="text-center print_ignore">
- <span class="nowrap">
+ <span class="text-nowrap">
{{ link_or_button(copy.url, copy.string) }}
{% if where_clause is not empty %}
<input type="hidden" class="where_clause" value="{{ where_clause }}">
@@ -31,7 +31,7 @@
{% if delete.url is not empty %}
<td class="text-center print_ignore{{ is_ajax ? ' ajax' }}">
- <span class="nowrap">
+ <span class="text-nowrap">
{{ link_or_button(delete.url, delete.string, {'class': 'delete_row requireConfirm' ~ (is_ajax ? ' ajax') }) }}
{% if js_conf is not empty %}
<div class="hide">{{ js_conf }}</div>
@@ -42,7 +42,7 @@
{% elseif position == 'right' %}
{% if delete.url is not empty %}
<td class="text-center print_ignore{{ is_ajax ? ' ajax' }}">
- <span class="nowrap">
+ <span class="text-nowrap">
{{ link_or_button(delete.url, delete.string, {'class': 'delete_row requireConfirm' ~ (is_ajax ? ' ajax') }) }}
{% if js_conf is not empty %}
<div class="hide">{{ js_conf }}</div>
@@ -53,7 +53,7 @@
{% if copy.url is not empty %}
<td class="text-center print_ignore">
- <span class="nowrap">
+ <span class="text-nowrap">
{{ link_or_button(copy.url, copy.string) }}
{% if where_clause is not empty %}
<input type="hidden" class="where_clause" value="{{ where_clause }}">
@@ -64,7 +64,7 @@
{% if edit.url is not empty %}
<td class="text-center print_ignore edit_row_anchor{{ not edit.clause_is_unique ? ' nonunique' }}">
- <span class="nowrap">
+ <span class="text-nowrap">
{{ link_or_button(edit.url, edit.string) }}
{% if where_clause is not empty %}
<input type="hidden" class="where_clause" value="{{ where_clause }}">