Browse Source

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

This closes #6038
2.0.7-release
lilyzhou 3 years ago committed by GitHub
parent
commit
e866d1be86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.scss

2
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%;
}

Loading…
Cancel
Save