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
115
@import 'c/lexCssUtility';
 
.lexBorder[c-lexPCLLostReportPage_lexPCLLostReportPage] {
    color: #0A81DF;
    width: 88px !important;
    height: 34px;
    border-radius: 4px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #0A81DF;
    font-size: small;
}
lightning-combobox label {
  color: black !important;
}
 
label {
  color: black !important;
}
.Pop{
  height: 300px;
  width: 400px;
  background-color: white;
}
 
.lexBorder1 {
    font-size: small;
    font-family: 'sans-serif';
    font-weight: 500;
    color: #0A81DF;
    width: 62px;
    height: 34px;
    border-radius: 4px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #0A81DF;
}
.iconButton button{
    padding-bottom: 11px;
}
table tr {
    text-align: center !important;
  }
.lexBorder3 {
    font-size: small;
    font-family: 'sans-serif';
    font-weight: 500;
    color: #0A81DF;
    width: 114px;
    height: 34px;
    border-radius: 4px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #0A81DF;
}
/* 自定义表头样式 */
.custom-table th {
    background-color: #F3F3F3; /* 将背景颜色更改为灰色 */
    border-right: 1px solid #AEAEAE; /* 添加右侧竖线 */
    padding: 10px; /* 添加内边距以增加可读性 */
  }
 
  /* 最后一个表头单元格不添加右侧竖线 */
  .custom-table th:last-child {
    border-right: none;
  }
  lightning-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999; /* 确保在最上层显示 */
  }
 
  :host {
    --slds-c-accordion-summary-color-background: #F3F3F3;
    --slds-c-accordion-heading-text-color: #181818;
  }
 
  /* CSS 文件中的样式 */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 背景色,可以根据需要调整透明度 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 确保覆盖其他内容 */
}
 
.spinner-overlay lightning-spinner {
  margin-top: -100px; /* 负值将图标向上移动 */
}
 
 
 
 
 
@media (max-width: 768px) {
  th, td {
    display: block;
    width: 10%;
  }
}
 
.textAreaBody {
  --sds-c-textarea-sizing-min-height:175px;
}