form-design.less 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  1. // 表单设计器样式
  2. @primary-color: "#13c2c2";
  3. @layout-color : "#9867f7";
  4. @primary-background-color: fade(@primary-color, 6%);
  5. @primary-hover-bg-color : fade(@primary-color, 20%);
  6. @layout-background-color : fade(@layout-color, 12%);
  7. @layout-hover-bg-color : fade(@layout-color, 24%);
  8. @title-text-color: #fff;
  9. @border-color : #ccc;
  10. @left-right-width : 270px;
  11. @header-height : 56px;
  12. @operating-area-height : 45px;
  13. @import "./k-table.less";
  14. @import "./k-editor.less";
  15. // 表单设计器样式
  16. .form-designer-container-9136076486841527 {
  17. height : 100vh;
  18. width : 100%;
  19. overflow: hidden;
  20. // header样式
  21. .header {
  22. width : 100%;
  23. height : @header-height;
  24. text-align : center;
  25. background : @primary-color;
  26. color : @title-text-color;
  27. // margin-bottom: 6px;
  28. // border-bottom: 1px solid @border-color;
  29. line-height : @header-height;
  30. font-size : 18px;
  31. font-weight : bold;
  32. }
  33. // 头部操作按钮区域
  34. .operating-area {
  35. border-bottom : 2px solid @border-color;
  36. font-size : 16px;
  37. text-align : left;
  38. height : @operating-area-height;
  39. line-height : @operating-area-height;
  40. padding : 0px 12px;
  41. display : flex;
  42. justify-content: space-between;
  43. align-content : center;
  44. a {
  45. color : #666;
  46. margin: 0 5px;
  47. &.disabled, &.disabled:hover {
  48. color : #ccc;
  49. }
  50. &:hover {
  51. color: @primary-color;
  52. }
  53. >span {
  54. font-size : 14px;
  55. padding-left: 2px;
  56. }
  57. }
  58. }
  59. // iconfont 样式
  60. .icon {
  61. width : 1em;
  62. height : 1em;
  63. vertical-align: -0.15em;
  64. fill : currentColor;
  65. overflow : hidden;
  66. }
  67. // 设计器内容样式
  68. .content {
  69. display: flex;
  70. height : 100%;
  71. flex : 1;
  72. &.show-head {
  73. margin-top: 6px;
  74. height : calc(100% - @header-height - 6px);
  75. }
  76. &.toolbars-top {
  77. margin-top: 6px;
  78. height : calc(100% - @operating-area-height - 6px);
  79. }
  80. &.show-head-and-toolbars-top {
  81. margin-top: 6px;
  82. height : calc(100% - @header-height - @operating-area-height - 6px);
  83. }
  84. // 左右栏
  85. aside {
  86. box-shadow : 0px 0px 1px 1px @border-color;
  87. width : @left-right-width;
  88. height : 100%;
  89. // >.left-title {
  90. // padding : 12px 10px 8px;
  91. // user-select: none;
  92. // }
  93. &.left {
  94. // border-right: 1px solid @aside-border-color;
  95. height : 100%;
  96. overflow : auto;
  97. user-select: none;
  98. .ant-collapse-content-box {
  99. padding: 0;
  100. }
  101. .ant-collapse {
  102. border: 0;
  103. >.ant-collapse-item {
  104. border-color: @border-color;
  105. >.ant-collapse-header {
  106. padding: 7px 0 7px 40px;
  107. }
  108. >.ant-collapse-content {
  109. border-color: @border-color;
  110. }
  111. }
  112. }
  113. ul {
  114. padding : 5px;
  115. list-style : none;
  116. display : flex;
  117. margin-bottom: 0;
  118. flex-wrap : wrap;
  119. // background: #efefef;
  120. li {
  121. border-radius: 0;
  122. border : 0;
  123. box-shadow : 1px 0 0 0 @border-color, 0 1px 0 0 @border-color, 1px 1px 0 0 @border-color, 1px 0 0 0 @border-color inset, 0 1px 0 0 @border-color inset;
  124. padding : 8px 12px;
  125. transition : all 0.3s;
  126. width : calc(50% - 6px);
  127. margin : 2.7px;
  128. height : 36px;
  129. line-height : 20px;
  130. cursor : move;
  131. border : 1px solid transparent;
  132. border-radius: 3px;
  133. transition : all .3s;
  134. &:hover {
  135. color : @primary-color;
  136. border : 1px solid @primary-color;
  137. position : relative;
  138. z-index : 1;
  139. box-shadow: 0 2px 6px @primary-color;
  140. }
  141. }
  142. }
  143. }
  144. // 右侧区域
  145. &.right {
  146. height : 100%;
  147. // border-left: 1px solid @aside-border-color;
  148. // border-top : 1px solid @aside-border-color;
  149. color : #fff;
  150. overflow : hidden;
  151. position : relative;
  152. // 控件属性设置
  153. .form-item-properties {
  154. width : 100%;
  155. height: 100%;
  156. }
  157. .ant-tabs {
  158. height: 100%;
  159. .ant-tabs-content {
  160. height: 100%;
  161. .ant-tabs-tabpane {
  162. height : calc(100% - 45px);
  163. overflow: auto;
  164. }
  165. }
  166. }
  167. .properties-centent {
  168. height : 100%;
  169. overflow : hidden;
  170. background: #fff;
  171. .properties-body {
  172. overflow: auto;
  173. height : 100%;
  174. padding : 8px 16px;
  175. }
  176. .ant-form-item {
  177. margin-bottom: 0;
  178. padding : 6px 0;
  179. border-bottom: 1px solid @border-color;
  180. .ant-form-item-label {
  181. line-height: 2;
  182. }
  183. }
  184. }
  185. .hint-box {
  186. margin-top: 120px;
  187. }
  188. }
  189. }
  190. // 中间内容区域
  191. section {
  192. flex : 1;
  193. max-width : calc(100% - @left-right-width - @left-right-width);
  194. user-select: none;
  195. margin : 0 8px 0;
  196. box-shadow : 0px 0px 1px 1px @border-color;
  197. // 内容操作区域
  198. .form-panel {
  199. // height : calc(100% - 50px);
  200. height : 100%;
  201. background : #eee;
  202. // border : 1px solid #ccc;
  203. position : relative;
  204. &.no-toolbars-top {
  205. height: calc(100% - 50px);
  206. }
  207. >.hint-text {
  208. position : absolute;
  209. left : 0;
  210. top : 50%;
  211. width : 100%;
  212. transform: translateY(-50%);
  213. font-size : 20px;
  214. color : #aaa;
  215. z-index : 16;
  216. }
  217. .a-form-box {
  218. height : 100%;
  219. // box-shadow: 0px 1px 5px 1px #ccc;
  220. }
  221. .draggable-box {
  222. height : 100%;
  223. overflow: auto;
  224. .list-main {
  225. min-height : 100%;
  226. padding : 5px;
  227. position : relative;
  228. background : #fafafa;
  229. // border : 1px #ccc dashed;
  230. .moving {
  231. // 拖放移动中
  232. // outline-width: 0;
  233. min-height : 35px;
  234. box-sizing : border-box;
  235. overflow : hidden;
  236. padding : 0 !important;
  237. // margin : 3px 0;
  238. position : relative;
  239. &::before {
  240. content : '';
  241. height : 5px;
  242. width : 100%;
  243. background: @primary-color;
  244. position : absolute;
  245. top : 0;
  246. right : 0;
  247. }
  248. }
  249. .drag-move-box {
  250. position : relative;
  251. box-sizing: border-box;
  252. padding : 8px;
  253. overflow : hidden;
  254. transition: all .3s;
  255. min-height: 36px;
  256. &:hover {
  257. background: @primary-hover-bg-color;
  258. }
  259. // 选择时 start
  260. &::before {
  261. content : '';
  262. height : 5px;
  263. width : 100%;
  264. background: @primary-color;
  265. position : absolute;
  266. top : 0;
  267. right : -100%;
  268. transition: all .3s;
  269. }
  270. &.active {
  271. &::before {
  272. right: 0;
  273. }
  274. background : @primary-hover-bg-color;
  275. outline-offset: 0;
  276. }
  277. // 选择时 end
  278. .form-item-box {
  279. position : relative;
  280. box-sizing: border-box;
  281. word-wrap : break-word;
  282. &::before {
  283. content : "";
  284. position: absolute;
  285. width : 100%;
  286. height : 100%;
  287. top : 0;
  288. left : 0;
  289. z-index : 888;
  290. }
  291. .ant-form-item {
  292. // 修改ant form-item的margin为padding
  293. margin : 0;
  294. padding-bottom: 6px;
  295. }
  296. }
  297. .show-key-box {
  298. // 显示key
  299. position : absolute;
  300. bottom : 2px;
  301. right : 5px;
  302. font-size: 14px;
  303. z-index : 999;
  304. color : @primary-color;
  305. }
  306. >.copy,
  307. >.delete {
  308. position : absolute;
  309. top : 0;
  310. width : 30px;
  311. height : 30px;
  312. line-height: 30px;
  313. text-align : center;
  314. color : #fff;
  315. z-index : 989;
  316. transition : all .3s;
  317. &.unactivated {
  318. opacity : 0 !important;
  319. pointer-events: none;
  320. }
  321. &.active {
  322. opacity: 1 !important;
  323. }
  324. }
  325. >.copy {
  326. border-radius: 0 0 0 8px;
  327. right : 30px;
  328. background : @primary-color;
  329. }
  330. >.delete {
  331. right : 0px;
  332. background: @primary-color;
  333. }
  334. }
  335. // 动态表格设计面板样式
  336. .batch-box,
  337. .select-input-list-box {
  338. >.batch-label {
  339. font-size : 16px;
  340. font-weight: 500;
  341. padding : 10px 10px;
  342. }
  343. .draggable-box {
  344. min-height: 60px;
  345. width : 100%;
  346. border : 1px #ccc dashed;
  347. background: #fff;
  348. .list-main {
  349. min-height : 60px;
  350. position : relative;
  351. border : 1px #ccc dashed;
  352. overflow-x : auto;
  353. overflow-y : auto;
  354. white-space: nowrap;
  355. .moving {
  356. // 拖放移动中
  357. width : 175px;
  358. min-height: 94px;
  359. display : inline-block;
  360. }
  361. >div {
  362. min-width : 185px;
  363. display : inline-block;
  364. vertical-align: top;
  365. .ant-form-item>.ant-form-item-label,
  366. .ant-form-item>.ant-form-item-control-wrapper {
  367. text-align: left;
  368. display : block;
  369. }
  370. .ant-col {
  371. width: 100%;
  372. }
  373. }
  374. }
  375. }
  376. }
  377. .select-input-list-box {
  378. .column-box {
  379. display: flex;
  380. width : 100%;
  381. .check-box {
  382. width: 80px;
  383. }
  384. .draggable-box {
  385. flex: 1;
  386. }
  387. }
  388. // 隐藏选择输入列的所有组件的label
  389. .draggable-box {
  390. .ant-form-item-label {
  391. display: none !important;
  392. }
  393. }
  394. }
  395. .batch-box,
  396. .select-input-list-box,
  397. .grid-box,
  398. .table-box {
  399. position : relative;
  400. box-sizing: border-box;
  401. padding : 5px;
  402. background: @layout-background-color;
  403. width : 100%;
  404. transition: all .3s;
  405. overflow : hidden;
  406. .form-item-box {
  407. position : relative;
  408. box-sizing: border-box;
  409. .ant-form-item {
  410. // 修改ant form-item的margin为padding
  411. margin : 0;
  412. padding-bottom: 15px;
  413. }
  414. }
  415. .grid-row,
  416. .table-layout {
  417. background: @layout-background-color;
  418. .grid-col,
  419. .table-td {
  420. .draggable-box {
  421. min-height: 60px;
  422. min-width : 50px;
  423. border : 1px #ccc dashed;
  424. background: #fff;
  425. .list-main {
  426. min-height: 60px;
  427. position : relative;
  428. border : 1px #ccc dashed;
  429. }
  430. }
  431. }
  432. }
  433. // 选择时 start
  434. &::before {
  435. content : '';
  436. height : 5px;
  437. width : 100%;
  438. background: transparent;
  439. position : absolute;
  440. top : 0;
  441. right : -100%;
  442. transition: all .3s;
  443. }
  444. &.active {
  445. &::before {
  446. background: @layout-color;
  447. right : 0;
  448. }
  449. background : @layout-hover-bg-color;
  450. outline-offset: 0;
  451. }
  452. >.copy,
  453. >.delete {
  454. position : absolute;
  455. top : 0px;
  456. width : 30px;
  457. height : 30px;
  458. line-height: 30px;
  459. text-align : center;
  460. color : #fff;
  461. z-index : 989;
  462. transition : all .3s;
  463. &.unactivated {
  464. opacity : 0 !important;
  465. pointer-events: none;
  466. }
  467. &.active {
  468. opacity: 1 !important;
  469. }
  470. }
  471. >.copy {
  472. border-radius: 0 0 0 8px;
  473. right : 30px;
  474. background : @layout-color;
  475. }
  476. >.delete {
  477. right : 0px;
  478. background: @layout-color;
  479. }
  480. }
  481. }
  482. }
  483. }
  484. }
  485. }
  486. // 表格右键菜单样式
  487. .right-menu {
  488. width : 160px;
  489. background: #fff;
  490. border : 1px solid #ccc;
  491. position : fixed;
  492. transition: all 0s;
  493. box-shadow: 3px 3px 8px #999;
  494. border-radius: 3px;
  495. padding : 8px 0;
  496. z-index : 2199;
  497. ul {
  498. padding : 0;
  499. margin : 0;
  500. list-style: none;
  501. li {
  502. cursor : pointer;
  503. user-select: none;
  504. padding : 0 15px;
  505. height : 30px;
  506. line-height: 30px;
  507. font-size : 14px;
  508. i{
  509. margin-right: 4px;
  510. }
  511. &:hover {
  512. background: #eee;
  513. }
  514. }
  515. }
  516. }
  517. // 控件属性复选组件样式
  518. .kk-checkbox {
  519. .ant-checkbox-wrapper {
  520. margin-left : 0 !important;
  521. margin-right: 8px;
  522. }
  523. }
  524. // 列表动画
  525. .list-enter-active {
  526. transition: all .5s;
  527. }
  528. .list-leave-active {
  529. transition: all .3s;
  530. }
  531. .list-enter,
  532. .list-leave-to
  533. /* .list-leave-active for below version 2.1.8 */
  534. {
  535. opacity : 0;
  536. transform: translateX(-100px);
  537. }
  538. .list-enter {
  539. height: 30px;
  540. }
  541. ::-webkit-scrollbar {
  542. /*滚动条整体样式*/
  543. width : 6px;
  544. /*高宽分别对应横竖滚动条的尺寸*/
  545. height : 6px;
  546. scrollbar-arrow-color: red;
  547. }
  548. ::-webkit-scrollbar-thumb {
  549. /*滚动条里面小方块*/
  550. border-radius : 5px;
  551. box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.2);
  552. background : rgba(0, 0, 0, 0.2);
  553. scrollbar-arrow-color: red;
  554. }
  555. ::-webkit-scrollbar-track {
  556. /*滚动条里面轨道*/
  557. box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.2);
  558. border-radius: 0;
  559. background : rgba(0, 0, 0, 0.1);
  560. }
  561. // 行内组件宽度默认175px
  562. .ant-form-inline {
  563. .list-main {
  564. display : flex;
  565. flex-wrap : wrap;
  566. justify-content: flex-start;
  567. align-content : flex-start;
  568. .layout-width {
  569. width: 100%;
  570. }
  571. }
  572. .ant-form-item-control-wrapper {
  573. width: 175px !important;
  574. }
  575. }
  576. }
  577. // code盒子样式
  578. .json-box-9136076486841527 {
  579. height : 570px;
  580. overflow: auto;
  581. .vue-codemirror-wrap {
  582. height: 100%;
  583. .CodeMirror-wrap {
  584. height : 100%;
  585. background: #f6f6f6;
  586. .CodeMirror-scroll {
  587. height: 100%;
  588. width : 100%;
  589. }
  590. pre.CodeMirror-line,
  591. .CodeMirror-linenumber {
  592. min-height : 21px;
  593. line-height: 21px;
  594. }
  595. }
  596. }
  597. }
  598. // code-modal盒子样式
  599. .code-modal-9136076486841527 {
  600. .ant-modal-body {
  601. padding: 12px;
  602. }
  603. }
  604. // modal复制按钮样式
  605. .copy-btn-box-9136076486841527 {
  606. padding-top: 8px;
  607. text-align : center;
  608. .copy-btn {
  609. margin-right: 8px;
  610. }
  611. }
  612. // k-form-build
  613. .k-form-build-9136076486841527 {
  614. .select-input-list-box {
  615. color : rgba(0, 0, 0, 0.65);
  616. font-size: 14px;
  617. .ant-form-item {
  618. margin-bottom: 2px;
  619. margin-right : 8px
  620. }
  621. &.ant-form-horizontal {
  622. .ant-col.ant-form-item-control-wrapper {
  623. height : 30px;
  624. display : flex;
  625. align-items: center;
  626. }
  627. .text-box {
  628. height : 30px;
  629. line-height: 30px;
  630. }
  631. }
  632. }
  633. .ant-form-item {
  634. margin-bottom: 16px;
  635. }
  636. // 防止报错信息占位
  637. .ant-form-item-control {
  638. position: relative;
  639. .ant-form-explain {
  640. bottom : -16px;
  641. position: absolute;
  642. z-index : 10;
  643. }
  644. }
  645. &.ant-form-inline {
  646. .ant-form-item-control-wrapper {
  647. width: 175px !important;
  648. }
  649. }
  650. // 动态表格样式
  651. .batch-table {
  652. .ant-form-item {
  653. margin: 0;
  654. }
  655. .ant-form-item-control-wrapper {
  656. width: 170px !important;
  657. }
  658. .ant-table-thead>tr>th {
  659. padding: 12px;
  660. }
  661. .ant-table-tbody>tr>td {
  662. padding: 8px;
  663. }
  664. .ant-form-inline .ant-form-item-with-help {
  665. margin: 0;
  666. }
  667. .ant-table-placeholder {
  668. padding: 0;
  669. }
  670. }
  671. // 拖拽上传控件隐藏
  672. .hide-upload-drag {
  673. .ant-upload.ant-upload-drag {
  674. display: none;
  675. }
  676. }
  677. }
  678. //颜色选择器覆盖
  679. .m-colorPicker {
  680. width:25%;
  681. vertical-align:bottom;
  682. padding: 5px;
  683. border: 1px solid #e6e6e6;
  684. border-radius: 4px;
  685. font-size: 0;
  686. .colorBtn {
  687. height: 22px !important;
  688. width: 100% !important;
  689. }
  690. }
  691. // .k-form-build-9136076486841527 {
  692. // }
  693. // footer样式
  694. // .footer-9136076486841527 {
  695. // width : 100%;
  696. // height : 30px;
  697. // line-height: 30px;
  698. // padding : 0 15px;
  699. // text-align : right;
  700. // background : #fafafa;
  701. // color : @primary-color;
  702. // font-size : 14px;
  703. // font-weight: bold;
  704. // border-top : 1px solid #e0e0e0;
  705. // >a {
  706. // color : @primary-color;
  707. // text-decoration: none;
  708. // }
  709. // }