form-editor.scss 1.61 KB
@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;
}