From cf90b90a7cf6dc5003ba0cc818cfe597fc24fb92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Tue, 28 Apr 2026 22:55:22 +0300 Subject: [PATCH] feat: add admin view for managing translation keys and values --- resources/views/admin/languages.blade.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/resources/views/admin/languages.blade.php b/resources/views/admin/languages.blade.php index eedc888..9205d54 100644 --- a/resources/views/admin/languages.blade.php +++ b/resources/views/admin/languages.blade.php @@ -35,7 +35,22 @@ $(document).ready(function(){ text-overflow:ellipsis; overflow:hidden } - +#ceviri-table { + table-layout: fixed; + width: 100%; +} +#ceviri-table th:nth-child(1), #ceviri-table td:nth-child(1), +#ceviri-table th:nth-child(2), #ceviri-table td:nth-child(2) { + width: 45% !important; +} +#ceviri-table th:nth-child(3), #ceviri-table td:nth-child(3) { + width: 10% !important; + text-align: center; +} +#ceviri-table textarea { + width: 100% !important; + resize: vertical; +}