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