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:
authorPaweł Skokowski <skokowskipawel@icloud.com>2017-10-25 12:21:01 +0300
committerPaweł Skokowski <skokowskipawel@icloud.com>2017-10-25 12:21:01 +0300
commitf6089540d2a2baf10f337269ff5ae5640efeea36 (patch)
tree15235c9573118b740226ce36220111be96736390 /gis_data_editor.php
parent220d968e5d839ef35d143aadacbb7a0df997ac1f (diff)
Removed inline css in gis_data_editor.php
Signed-off-by: Paweł Skokowski <skokowskipawel@icloud.com>
Diffstat (limited to 'gis_data_editor.php')
-rw-r--r--gis_data_editor.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/gis_data_editor.php b/gis_data_editor.php
index 7d38a3648f..265f0b05be 100644
--- a/gis_data_editor.php
+++ b/gis_data_editor.php
@@ -134,16 +134,16 @@ if (isset($_REQUEST['input_name'])) {
echo Url::getHiddenInputs();
echo '<!-- Visualization section -->';
-echo '<div id="placeholder" style="width:450px;height:300px;'
- , ($srid != 0 ? 'display:none;' : '') , '">';
+echo '<div id="placeholder" '
+ , ($srid != 0 ? 'class="displaynone' : '') , '">';
echo $visualization;
echo '</div>';
-echo '<div id="openlayersmap" style="width:450px;height:300px;'
- , ($srid == 0 ? 'display:none;' : '') , '">';
+echo '<div id="openlayersmap" '
+ , ($srid == 0 ? 'class="displaynone' : '') , '">';
echo '</div>';
-echo '<div class="choice floatright" style="clear:right;">';
+echo '<div class="choice floatright clearright">';
echo '<input type="checkbox" id="choice" value="useBaseLayer"'
, ($srid != 0 ? ' checked="checked"' : '') , '/>';
echo '<label for="choice">' , __("Use OpenStreetMaps as Base Layer") , '</label>';