You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2021/08/31 08:27:52 UTC

[dolphinscheduler] branch dev updated: [Fix-6038][ui] width of "SQL Statement" in Dag FormLineModal will be shrunk if sql line is too long (#6040)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new e866d1b  [Fix-6038][ui] width of "SQL Statement" in Dag FormLineModal will be shrunk if sql line is too long (#6040)
e866d1b is described below

commit e866d1be86464d812551e8c38ba60767a204c82e
Author: lilyzhou <lj...@outlook.com>
AuthorDate: Tue Aug 31 16:27:45 2021 +0800

    [Fix-6038][ui] width of "SQL Statement" in Dag FormLineModal will be shrunk if sql line is too long (#6040)
    
    This closes #6038
---
 .../src/js/conf/home/pages/dag/_source/formModel/formModel.scss         | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.scss b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.scss
index d79f7cf..4ff63c9 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.scss
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.scss
@@ -90,6 +90,7 @@
       width: 130px;
       text-align: right;
       margin-right: 8px;
+      flex-shrink: 0;
       >span {
         font-size: 14px;
         color: #777;
@@ -99,6 +100,7 @@
     }
     .cont-box {
       flex: 1;
+      max-width: calc(100% - 138px);
       .label-box {
         width: 100%;
       }