From 964009ccd491fd607f1aefe29a8b3347cf78aec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A5=98=EC=84=A0=EC=9E=84?= Date: Thu, 4 Jun 2020 11:35:05 +0900 Subject: [PATCH] fix: table's contextmenu oveflows in certain languages (fix #891) (#1016) * fix: table's contextmenu oveflows in certain languages (fix #891) * feat: apply code review --- apps/editor/src/css/editor.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/editor/src/css/editor.css b/apps/editor/src/css/editor.css index a951313904..8d30deb3f8 100644 --- a/apps/editor/src/css/editor.css +++ b/apps/editor/src/css/editor.css @@ -557,7 +557,8 @@ } .te-popup-table-utils { - width: 120px; + width: auto; + min-width: 120px; } .te-popup-table-utils .tui-popup-body { @@ -565,6 +566,7 @@ } .te-popup-table-utils button { + display: block; width: 100%; background-color: #fff; border: none; @@ -581,6 +583,7 @@ } .te-popup-table-utils hr { + margin: 0; background-color: #cacaca; border-style: none; height: 1px;