Blame view

frontend/manage/src/assets/css/form-editor.scss 1.61 KB
8ea9c133   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@import 'element-variables.scss';

.widget-mask {
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: #fff;
  opacity: 0;
  z-index: 7;
}

.widget-mask:hover {
  outline: 1px dashed #f56c6c;
}

.drag-widget {
  position: absolute;
  cursor: move;
  width: 40px;
  height: 28px;
  left: -2px;
  top: -29px;
  background: $--color-primary;
  z-index: 8;
}

.drag-widget i.icon-drag {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-left: 12px;
  color: #fff;
}

.widget-form-item {
  position: relative;
  min-height: 50px;
  margin: 30px 8px;
}

/* .widget-form-item:hover {
  outline: 2px solid $--color-primary;
} */

.widget-view-action {
  position: absolute;
  right: -2px;
  bottom: -29px;
  height: 28px;
  line-height: 28px;
  background: $--color-primary;
  z-index: 9;
}

.widget-view-action i {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
}

.widget-view-action i.icon-copy {
  color: #fff;
  margin: 0 0 0 10px;
}

.widget-view-action i.del-icon {
  color: #fff;
  margin: 0 10px 0 0;
}

.widget-view-action .el-divider {
  background: $--color-primary;
  margin-bottom: 4px;
}

.widget-panel .ghost {
  // background: #f56c6c;
  // border: 10px solid #f56c6c;
  border: 1px dashed #409eff;
  background: rgba(64, 158, 255, 0.1);
  outline-width: 0;
  height: 3px;
  box-sizing: border-box;
  font-size: 0;
  content: '';
  overflow: hidden;
  padding: 0;
  
}
.form-container__body--widget .widget-panel .ghost{
  width: calc(100% - 2px);
  height: 100%;
  min-height: 76px;
}

>>> .el-form-item__label {
  font-size: 12px;
}