liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
103
104
105
106
107
108
109
110
111
112
113
114
.slds-theme_shade .slds-theme_alert-texture{
    background-color: blue;
     padding: 0px 0px 0px 0px;
}
.centered-text {
    display: flex;
    justify-content: center;
    align-items: center;
}
.datatable-container {
    max-height: 300px; 
    padding: 0px 0px 0px 0px; 
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc; /* 设置边框样式,1px宽度,黑色颜色,可以根据需要修改 */
/*    border-right: none; */
/*    padding: -1px; */
}
 
 
.custom-datatable .slds-th__action {
    border: none !important;
}
 
.datatable-product {
    max-height: 100%; 
    border: 1px solid #ccc; 
    border-radius: 5px;
    padding: 0px 0px 0px 0px; 
    overflow: auto; 
}
.slds-form-element__label{
    color:black;
    align-items: center;
}
.custom-div {
    border: 2px solid #333; 
    border-radius: 5px;
    padding: 10px; 
}
.transparent-background {
    background-color: rgba(255, 255, 255, 0.5); /* 白色背景,透明度为0.5 */
}
 
.custom-table {
    width: 120%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    padding:0px 0px 0px 0px;
}
 
.custom-table th, .custom-table td {
    padding: 5px;
    text-align: left;
}
 
.custom-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}
 
 
.container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}
 
.container1 {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center;
 
}
 
.column {
    flex: 1;
    margin-right: 10px; /* Adjust margin as needed */
    display: flex;
}
 
 
/* 可以为按钮添加一些额外的样式,例如边距等 */
lightning-button {
    margin: 0 10px; /* 为按钮添加水平间距 */
}
 
.slds-modal__container {
    padding: 0px;
}
 
 
.required-symbol {
    color: red;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    width: 7px;
    /* margin-right: 4px; */
}
 
/* 添加全屏遮罩层样式 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* 可以根据需求调整背景颜色和透明度 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 保证遮罩层位于其他元素之上 */
}