Geeklog-jp / geeklog-jp

This is Geeklog 2.1.0 JP 1.1. Geeklog 2.1.1 JP 1.0: see https://github.com/Geeklog-jp/geeklog-japan
http://www.geeklog.jp
0 stars 1 forks source link

Dbman 管理画面 <div class="table-wrapper-fit">で囲まれていない #234

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
問題を再現するための操作手順:
1.Dbman 管理画面 を表示する

正常に動作する場合に、期待される出力(表示):
width: 100%;できれいにテーブルが表示される。

実際にはどのように出力(表示):
width: 
100%;が効いていないので、右側のブロックに重なったりする
。

Geeklogのリリースまたはスナップショットのバージョン,
Subversionから取り出した場合は元のディレクトリと
リビジョン情報: 6d53feaf1aba

functions.incを以下のように修正。

line 1200
from:
    $retval = '<table class="admin-list-table">' . LB
to:
    $retval = '<div class="table-wrapper-fit">' . LB . '<table class="admin-list-table">' . LB

line 1221
from:
    $retval .= '</table>' . LB;
to:
    $retval .= '</table>' . LB . '</div>' . LB;

Original issue reported on code.google.com by ivysoho on 17 Feb 2014 at 8:50