Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function data_table_css() { |
||
22 | |||
23 | $table_css = '<style type="text/css"> |
||
24 | .wp-list-table .column-post_title { width: 42.5%; } |
||
25 | .wp-list-table .column-focus { width: 15%; } |
||
26 | .wp-list-table .column-word { width: 7.5%; } |
||
27 | .wp-list-table .column-column-link { width: 7.5%; } |
||
28 | .wp-list-table .column-column-image { width: 7.5%; } |
||
29 | .wp-list-table .column-column-share { width: 7.5%; } |
||
30 | .wp-list-table .column-column-time { width: 12.5%; } |
||
31 | </style>'; |
||
32 | |||
33 | $overview_table_css = '<style type="text/css"> |
||
34 | .wp-list-table .column-item { width: 20%; } |
||
35 | .wp-list-table .column-remark { width: 80%; } |
||
36 | </style>'; |
||
37 | |||
38 | echo $table_css; |
||
39 | echo $overview_table_css; |
||
40 | } |
||
42 |