Skip to content

Commit

Permalink
Merge pull request #13767 from skokeers27/master
Browse files Browse the repository at this point in the history
Removed inline css in index.inc.php
  • Loading branch information
MauricioFauth committed Oct 20, 2017
2 parents 01a5133 + f863a89 commit 72677a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup/frames/index.inc.php
Expand Up @@ -135,7 +135,7 @@
);
echo '<div class="form">';
if ($cf->getServerCount() > 0) {
echo '<table cellspacing="0" class="datatable" style="table-layout: fixed">';
echo '<table cellspacing="0" class="datatable">';
echo '<tr>';
echo '<th>#</th>';
echo '<th>' , __('Name') , '</th>';
Expand All @@ -151,7 +151,7 @@
, htmlspecialchars($cf->getValue("Servers/$id/auth_type"))
, '</td>';
echo '<td>' , htmlspecialchars($cf->getServerDSN($id)) , '</td>';
echo '<td style="white-space: nowrap">';
echo '<td class="nowrap">';
echo '<small>';
echo '<a href="' , Url::getCommon(array('page' => 'servers', 'mode' => 'edit', 'id' => $id)), '">'
, __('Edit') , '</a>';
Expand All @@ -175,7 +175,7 @@

echo '<table width="100%">';
echo '<tr>';
echo '<td class="lastrow" style="text-align: left">';
echo '<td class="lastrow left">';
echo '<input type="submit" name="submit" value="' , __('New server') , '" />';
echo '</td>';
echo '</tr>';
Expand Down Expand Up @@ -247,7 +247,7 @@
);

echo '<tr>';
echo '<td colspan="2" class="lastrow" style="text-align: left">';
echo '<td colspan="2" class="lastrow left">';
echo '<input type="submit" name="submit_display" value="' , __('Display') , '" />';
echo '<input type="submit" name="submit_download" value="' , __('Download') , '" />';
echo '&nbsp; &nbsp;';
Expand Down
4 changes: 4 additions & 0 deletions themes/pmahomme/css/common.css.php
Expand Up @@ -398,6 +398,10 @@
}

/* 3.4 */
.datatable{
table-layout: fixed;
}

table {
border-collapse: collapse;
}
Expand Down

0 comments on commit 72677a6

Please sign in to comment.