wyg
2024-06-14 a57dc2fae73d6e0dd315a120ca43ee685a6c7b7c
提交 | 用户 | 时间
a57dc2 1 .process-design {
W 2   .process-panel__container {
3     box-sizing: border-box;
4     padding: 0 8px;
5     border-left: 1px solid #eeeeee;
6     box-shadow: 0 0 8px #cccccc;
7     max-height: 100%;
8     overflow-y: scroll;
9   }
10   .panel-tab__title {
11     font-weight: 600;
12     padding: 0 8px;
13     font-size: 1.1em;
14     line-height: 1.2em;
15     i {
16       margin-right: 8px;
17       font-size: 1.2em;
18     }
19   }
20   .panel-tab__content {
21     width: 100%;
22     box-sizing: border-box;
23     border-top: 1px solid #eeeeee;
24     padding: 8px 16px;
25     .panel-tab__content--title {
26       display: flex;
27       justify-content: space-between;
28       padding-bottom: 8px;
29       span {
30         flex: 1;
31         text-align: left;
32       }
33     }
34   }
35   .element-property {
36     width: 100%;
37     display: flex;
38     align-items: flex-start;
39     margin: 8px 0;
40     .element-property__label {
41       display: block;
42       width: 90px;
43       text-align: right;
44       overflow: hidden;
45       padding-right: 12px;
46       line-height: 32px;
47       font-size: 14px;
48       box-sizing: border-box;
49     }
50     .element-property__value {
51       flex: 1;
52       line-height: 32px;
53     }
54     .el-form-item {
55       width: 100%;
56       margin-bottom: 0;
57       padding-bottom: 18px;
58     }
59   }
60   .list-property {
61     flex-direction: column;
62     .element-listener-item {
63       width: 100%;
64       display: inline-grid;
65       grid-template-columns: 16px auto 32px 32px;
66       grid-column-gap: 8px;
67     }
68     .element-listener-item + .element-listener-item {
69       margin-top: 8px;
70     }
71   }
72   .listener-filed__title {
73     display: inline-flex;
74     width: 100%;
75     justify-content: space-between;
76     align-items: center;
77     margin-top: 0;
78     span {
79       width: 200px;
80       text-align: left;
81       font-size: 14px;
82     }
83     i {
84       margin-right: 8px;
85     }
86   }
87   .element-drawer__button {
88     margin-top: 8px;
89     width: 100%;
90     display: inline-flex;
91     justify-content: space-around;
92   }
93   .element-drawer__button > .el-button {
94     width: 100%;
95   }
96   
97   .el-collapse-item__content {
98     padding-bottom: 0;
99   }
100   .el-input.is-disabled .el-input__inner {
101     color: #999999;
102   }
103   .el-form-item.el-form-item--mini {
104     margin-bottom: 0;
105     & + .el-form-item {
106       margin-top: 16px;
107     }
108   }
109 }
110