/* File: tea-core/admin.css */
/* 辞典CPT: 索引列の視認性と省スペース */
.post-type-dictionary-terms .fixed .column-tw_index { width: 88px; }
.post-type-dictionary-terms table.wp-list-table td.column-tw_index {
line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* SEO列の縦積み軽減（既報の方針に追従） */
.post-type-dictionary-terms td.column-rank_math_seo_score { line-height: 1.15; }

add_action('admin_footer-edit.php', function(){
$screen = get_current_screen(); if (!$screen || $screen->post_type !== TWX_CPT) return;
?>
<script>
(function($){
$(document).on('click', '.editinline', function(){
// 必要であれば Ajax で index_keys を表示（読み取り専用）
// 簡易版: 何もしない（将来用フック）
});
})(jQuery);
</script>
<?php
});