Blame view

ant-design-vue-jeecg/src/assets/less/common.less 1.49 KB
肖超群 authored
1
2
3
4
/*列表上方操作按钮区域*/
.ant-card-body .table-operator {
  margin-bottom: 8px;
}
肖超群 authored
5
肖超群 authored
6
7
8
9
/** Button按钮间距 */
.table-operator .ant-btn {
  margin: 0 8px 8px 0;
}
肖超群 authored
10
肖超群 authored
11
12
13
14
15
16
17
.table-operator .ant-btn-group .ant-btn {
  margin: 0;
}

.table-operator .ant-btn-group .ant-btn:last-child {
  margin: 0 8px 8px 0;
}
肖超群 authored
18
肖超群 authored
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*列表td的padding设置 可以控制列表大小*/
.ant-table-tbody .ant-table-row td {
  padding-top: 15px;
  padding-bottom: 15px;
}

/*列表页面弹出modal*/
.ant-modal-cust-warp {
  height: 100%
}

/*弹出modal Y轴滚动条*/
.ant-modal-cust-warp .ant-modal-body {
  height: calc(100% - 110px) !important;
  overflow-y: auto
}

/*弹出modal 先有content后有body 故滚动条控制在body上*/
.ant-modal-cust-warp .ant-modal-content {
  height: 90% !important;
  overflow-y: hidden
}
肖超群 authored
41
肖超群 authored
42
43
44
45
46
/*列表中有图片的加这个样式 参考用户管理*/
.anty-img-wrap {
  height: 25px;
  position: relative;
}
肖超群 authored
47
肖超群 authored
48
49
50
.anty-img-wrap > img {
  max-height: 100%;
}
肖超群 authored
51
肖超群 authored
52
/*列表中范围查询样式*/
肖超群 authored
53
54
55
56
57
58
59
60
61
62
.query-group-cust {
  width: calc(50% - 10px)
}

.query-group-split-cust:before {
  content: "~";
  width: 20px;
  display: inline-block;
  text-align: center
}
肖超群 authored
63
64
65


/*erp风格子表外框padding设置*/
肖超群 authored
66
67
68
.ant-card-wider-padding.cust-erp-sub-tab > .ant-card-body {
  padding: 5px 12px
}
肖超群 authored
69
70
71
72
73
74
75

/* 内嵌子表背景颜色 */
.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row {
  background-color: #FFFFFF;
}

/**隐藏样式-modal确定按钮 */
肖超群 authored
76
77
78
.jee-hidden {
  display: none
}